summaryrefslogtreecommitdiff
path: root/fpcdocs/datutex/ex4.pp
blob: c79a26723425476797d0416a2adfca121c7fba41 (plain)
1
2
3
4
5
6
7
8
9
Program Example4;

{ This program demonstrates the IsPM function }

Uses SysUtils,DateUtils;

Begin
  Writeln('Current time is PM : ',IsPM(Now));
End.