mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 11:31:39 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			241 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			241 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example20;
 | |
| 
 | |
| { This program demonstrates the IsToday function }
 | |
| 
 | |
| Uses SysUtils,DateUtils;
 | |
| 
 | |
| Begin
 | |
|   Writeln('Today     : ',IsToday(Today));
 | |
|   Writeln('Tomorrow  : ',IsToday(Tomorrow));
 | |
|   Writeln('Yesterday : ',IsToday(Yesterday));
 | |
| End. | 
