exercism/ruby/gigasecond/gigasecond.rb

10 lines
112 B
Ruby

class Gigasecond
def self.from(time)
time + 1_000_000_000
end
end
module BookKeeping
VERSION = 6
end