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

{ Program to demonstrate the GetDateTime function. }

Uses oldlinux;

Var Year, Month, Day, Hour, min, sec : Word;

begin
 GetDateTime (Year, Month, Day, Hour, min, sec);
 Writeln ('Date : ',Day:2,'/',Month:2,'/',Year:4);
 Writeln ('Time : ',Hour:2,':',Min:2,':',Sec:2);
end.