mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 04:22:07 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			216 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			216 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
Program Example5;
 | 
						|
 | 
						|
{ Program to demonstrate the GetTime function. }
 | 
						|
 | 
						|
Uses Unix;
 | 
						|
 | 
						|
Var Hour, Minute, Second : Word;
 | 
						|
 | 
						|
begin
 | 
						|
  GetTime (Hour, Minute, Second);
 | 
						|
  Writeln ('Time : ',Hour:2,':',Minute:2,':',Second:2);
 | 
						|
end.
 |