Sunday, August 3, 2014

Exercism: "Gigasecond in Ruby"

I solved the Gigasecond exercise in Ruby a month ago but I forgot to post it.

Since my previous post was about the solution to this exercise using Clojure, I'll post here its solution in Ruby:

class Gigasecond
GS_IN_DAYS = (10**9)/(60*60*24)
def initialize (birth_date)
@birth_date = birth_date
end
def date
@birth_date + GS_IN_DAYS
end
end
view raw gigasecond.rb hosted with ❤ by GitHub

In this case life is much easier in Ruby :)

No comments:

Post a Comment