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

{ This program demonstrates the DateOf function }

Uses SysUtils,DateUtils;

Begin
  Writeln('Date is: ',DateTimeToStr(DateOf(Now)));
End.