Created
March 18, 2010 09:16
-
-
Save JonasNielsen/336193 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
puts 'What\'s on your mind, son?' | |
question = gets.chomp | |
while question != question.upcase | |
puts 'WHAT?! SPEAK UP SON!' | |
question = gets.chomp | |
if question == question.upcase | |
millenium = 1930 | |
year = millenium + rand(20) | |
puts 'NO, NOT SINCE '+ year.to_s + '!' | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment