macintosh_cookbook/examples/time.pas

19 lines
320 B
ObjectPascal
Raw Normal View History

2020-05-07 09:47:11 +00:00
program ExampleTime;
var
date: DateTimeRec;
seconds: Longint;
begin
ShowText;
GetTime(date);
GetDateTime(seconds);
Writeln('The current time is:');
Writeln(date.hour : 2, ':', date.minute : 2, ':', date.second : 2);
Writeln;
Writeln('Seconds since midnight, January 1, 1904:');
Writeln(-seconds);
end.