fpc/docs/datutex/ex3.pp
2004-12-29 15:16:37 +00:00

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.