fpc/docs/linuxex/ex5.pp
1998-05-07 12:14:19 +00:00

13 lines
217 B
ObjectPascal

Program Example5;
{ Program to demonstrate the GetTime function. }
Uses linux;
Var Hour, Minute, Second : Word;
begin
GetTime (Hour, Minute, Second);
Writeln ('Time : ',Hour:2,':',Minute:2,':',Second:2);
end.