summaryrefslogtreecommitdiff
path: root/fpcdocs/olinuxex/ex6.pp
blob: 536abafdfdd5d671882ae456b0e7ef8cf83717b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Program Example6;

{ Program to demonstrate the GetDate function. }

Uses oldlinux;

Var Year, Month, Day : Word;

begin
 GetDate (Year, Month, Day);
 Writeln ('Date : ',Day:2,'/',Month:2,'/',Year:4);
end.