mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 12:31:38 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			173 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			173 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example3;
 | |
| 
 | |
| { This program demonstrates the IsInLeapYear function }
 | |
| 
 | |
| Uses SysUtils,DateUtils;
 | |
| 
 | |
| Begin
 | |
|   Writeln('Current year is leap year: ',IsInLeapYear(Date));
 | |
| End. | 
