8 lines
97 B
Ruby
8 lines
97 B
Ruby
class Gigasecond
|
|
GIGASECOND = 10 ** 9
|
|
|
|
def self.from(start)
|
|
start + GIGASECOND
|
|
end
|
|
end
|