2
0

ex5.pp 217 B

123456789101112
  1. Program Example5;
  2. { Program to demonstrate the GetTime function. }
  3. Uses linux;
  4. Var Hour, Minute, Second : Word;
  5. begin
  6. GetTime (Hour, Minute, Second);
  7. Writeln ('Time : ',Hour:2,':',Minute:2,':',Second:2);
  8. end.