RosettaCodeData/Task/System-time/Modula-3/system-time.mod3

8 lines
136 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
MODULE MyTime EXPORTS Main;
IMPORT IO, FmtTime, Time;
BEGIN
IO.Put("Current time: " & FmtTime.Long(Time.Now()) & "\n");
END MyTime.