Created
October 3, 2011 16:52
-
-
Save kingsidharth/1259584 to your computer and use it in GitHub Desktop.
Shout at her in caps
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
puts "Talk to Grandma" | |
you_said = 'not' | |
while you_said != 'BYE' | |
if you_said == you_said.upcase | |
puts "Nah! Not since " + 1950+rand(50).to_s + " !" | |
else | |
puts "HUH? SPEAK UP! LOUNDER!" | |
end | |
you_said = gets.chomp | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment