RosettaCodeData/Task/System-time/Ruby/system-time.rb

14 lines
288 B
Ruby
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
t = Time.now
# textual
2014-01-17 05:32:22 +00:00
puts t # => 2013-12-27 18:00:23 +0900
2013-04-11 01:07:29 -07:00
# epoch time
2014-01-17 05:32:22 +00:00
puts t.to_i # => 1388134823
2013-04-11 01:07:29 -07:00
# epoch time with fractional seconds
2014-01-17 05:32:22 +00:00
puts t.to_f # => 1388134823.9801579
2015-11-18 06:14:39 +00:00
# epoch time as a rational (more precision):
puts Time.now.to_r # 1424900671883862959/1000000000