Skip to content

Instantly share code, notes, and snippets.

@JonasNielsen
Created March 18, 2010 09:16
Show Gist options
  • Save JonasNielsen/336193 to your computer and use it in GitHub Desktop.
Save JonasNielsen/336193 to your computer and use it in GitHub Desktop.
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