mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 12:11:34 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			250 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			250 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example72;
 | |
| 
 | |
| { This program demonstrates the IncMonth function }
 | |
| 
 | |
| Uses SysUtils,DateUtils;
 | |
| 
 | |
| Begin
 | |
|   Writeln('One Month from today is ',DateToStr(IncMonth(Today,1)));
 | |
|   Writeln('One Month ago from today is ',DateToStr(IncMonth(Today,-1)));
 | |
| End. | 
