mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 17:29:28 +02:00
13 lines
220 B
ObjectPascal
13 lines
220 B
ObjectPascal
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.
|