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

{ Program to demonstrate the GetTime function. }

Uses Unix;

Var Hour, Minute, Second : Word;

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