RosettaCodeData/Task/System-time/Ruby/system-time.rb
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

10 lines
187 B
Ruby

t = Time.now
# textual
puts t # => Wed Aug 05 20:14:50 -0400 2009
# epoch time
puts t.to_i # => 1249517690
# epoch time with fractional seconds
puts t.to_f # => 1249517690.74388