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

9 lines
150 B
ObjectPascal

Program Example4;
{ This program demonstrates the IsPM function }
Uses SysUtils,DateUtils;
Begin
Writeln('Current time is PM : ',IsPM(Now));
End.