RosettaCodeData/Task/Show-the-epoch/Delphi/show-the-epoch.delphi
2023-07-01 13:44:08 -04:00

9 lines
124 B
Text

program ShowEpoch;
{$APPTYPE CONSOLE}
uses SysUtils;
begin
Writeln(FormatDateTime('yyyy-mm-dd hh:nn:ss.zzz', 0));
end.