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

{ This program demonstrates the TimeOf function }

Uses SysUtils,DateUtils;

Begin
  Writeln('Time is : ',TimeToStr(TimeOf(Now)));
End.