Skip to content

Instantly share code, notes, and snippets.

@kingsidharth
Created October 3, 2011 16:52
Show Gist options
  • Save kingsidharth/1259584 to your computer and use it in GitHub Desktop.
Save kingsidharth/1259584 to your computer and use it in GitHub Desktop.
Shout at her in caps
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