10 lines
187 B
Ruby
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
|