mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 10:11:27 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			225 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			225 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example29;
 | |
| 
 | |
| { This program demonstrates the EndOfTheMonth function }
 | |
| 
 | |
| Uses SysUtils,DateUtils;
 | |
| 
 | |
| Const
 | |
|   Fmt = '"last day of this month : "dd mmmm yyyy';
 | |
| 
 | |
| Begin
 | |
|   Writeln(FormatDateTime(Fmt,EndOfTheMonth(Today)));
 | |
| End. | 
