Since my previous post was about the solution to this exercise using Clojure, I'll post here its solution in Ruby:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
In this case life is much easier in Ruby :)
No comments:
Post a Comment