summaryrefslogtreecommitdiff
path: root/fpcdocs/sysutex/ex7.pp
blob: 474af8bdd4a8a07f483841eefc8bbff11d2c006c (plain)
1
2
3
4
5
6
7
8
9
Program Example7;

{ This program demonstrates the DateToStr function }

Uses sysutils;

Begin
  Writeln(Format ('Today is: %s',[DateToStr(Date)]));
End.