exercism/ruby/gigasecond/gigasecond.rb

10 lines
112 B
Ruby
Raw Normal View History

2018-03-02 22:27:55 +00:00
class Gigasecond
def self.from(time)
time + 1_000_000_000
end
end
module BookKeeping
VERSION = 6
end