Created
June 19, 2013 14:42
-
-
Save naush/5814861 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| require 'date' | |
| birthday = Date.new(1985, 11, 21) | |
| today = Date.today | |
| move = Date.new(2000, 8, 8) | |
| since_birthday = (today - birthday).to_i | |
| since_move = (today - move).to_i | |
| puts "You are #{since_birthday} days old!" | |
| puts "You've been in the USA for #{since_move} days!" | |
| puts "You've spent #{((since_move / since_birthday.to_f) * 100).to_i}% of your life in the USA!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment