RosettaCodeData/Task/Date-format/Free-Pascal-Lazarus/date-format.pas

7 lines
152 B
ObjectPascal
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
program Format_Date_Time;
uses
SysUtils;
begin
WriteLn(FormatDateTime('yyyy-mm-dd', Now) +#13#10+ FormatDateTime('dddd, mmmm dd, yyyy', Now));
end.