Created
May 4, 2012 13:01
-
-
Save diegoeche/2594685 to your computer and use it in GitHub Desktop.
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
require "time" | |
party_time = Time.parse("5/04/2012 6:00:00 P.M.") | |
loop do | |
seconds_left = party_time.to_i - Time.now.to_i | |
puts "Seconds left to party: #{seconds_left}" | |
sleep(1) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment