exercism/ruby/gigasecond/gigasecond.rb

8 lines
97 B
Ruby
Raw Normal View History

2018-09-16 15:09:43 -04:00
class Gigasecond
GIGASECOND = 10 ** 9
def self.from(start)
start + GIGASECOND
end
end