Skip to content

Instantly share code, notes, and snippets.

@naush
Created June 19, 2013 14:42
Show Gist options
  • Save naush/5814861 to your computer and use it in GitHub Desktop.
Save naush/5814861 to your computer and use it in GitHub Desktop.
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