mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 04:11:35 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			223 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			223 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example37;
 | |
| 
 | |
| { This program demonstrates the EndOfTheDay function }
 | |
| 
 | |
| Uses SysUtils,DateUtils;
 | |
| 
 | |
| Const
 | |
|   Fmt = '"End of the day : "dd mmmm yyyy hh:nn:ss';
 | |
| 
 | |
| 
 | |
| Begin
 | |
|   Writeln(FormatDateTime(Fmt,EndOfTheDay(Today)));
 | |
| End. | 
