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

8 lines
136 B
Text
Raw Permalink Normal View History

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