RosettaCodeData/Task/System-time/Crystal/system-time.cr
2024-10-16 18:07:41 -07:00

8 lines
150 B
Crystal

# current time in system's time zone:
Time.local
# current time in UTC
Time.utc
# monotonic time (useful for measuring elapsed time)
Time.monotonic