mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 23:49:28 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			203 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			203 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example6;
 | |
| 
 | |
| { Program to demonstrate the GetDate function. }
 | |
| 
 | |
| Uses linux;
 | |
| 
 | |
| Var Year, Month, Day : Word;
 | |
| 
 | |
| begin
 | |
|  GetDate (Year, Month, Day);
 | |
|  Writeln ('Date : ',Day:2,'/',Month:2,'/',Year:4);
 | |
| end.
 | 
