Created
October 22, 2014 23:03
-
-
Save samguergen/1b63b925cb548c51935c to your computer and use it in GitHub Desktop.
Deaf Grandma
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 "Hello my little pumpkin, tell grandma everything..." | |
count = 0 | |
while true | |
reply = gets.chomp | |
if reply == "BYE" | |
count += 1 | |
if count == 3 | |
puts "Goodbye!" | |
break | |
end | |
elsif reply == reply.upcase | |
count = 0 | |
random = rand(21) | |
random = random + 1930 | |
random = random.to_s | |
puts "NO, NOT SINCE " + random + "!" | |
else | |
count = 0 | |
puts "HUH?! SPEAK UP, SAM!" | |
end | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment