summaryrefslogtreecommitdiff
path: root/fpcdocs/olinuxex/ex5.pp
blob: 6624930269465fb1aa5e67f09b7836da9b908b16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Program Example5;

{ Program to demonstrate the GetTime function. }

Uses oldlinux;

Var Hour, Minute, Second : Word;

begin
  GetTime (Hour, Minute, Second);
  Writeln ('Time : ',Hour:2,':',Minute:2,':',Second:2);
end.