exercism/ruby/gigasecond/gigasecond.rb
2018-09-16 15:09:43 -04:00

8 lines
97 B
Ruby

class Gigasecond
GIGASECOND = 10 ** 9
def self.from(start)
start + GIGASECOND
end
end