fpc/docs/unixex/ex60.pp
2004-10-22 21:57:33 +00:00

14 lines
291 B
ObjectPascal

Program Example6;
{ Program to demonstrate the GetDateTime function. }
Uses Unix;
Var Year, Month, Day, Hour, min, sec : Word;
begin
GetDateTime (Year, Month, Day, Hour, min, sec);
Writeln ('Date : ',Day:2,'/',Month:2,'/',Year:4);
Writeln ('Time : ',Hour:2,':',Min:2,':',Sec:2);
end.