Skip to content

Instantly share code, notes, and snippets.

@thedeeno
Last active December 11, 2015 11:08
Show Gist options
  • Save thedeeno/4591474 to your computer and use it in GitHub Desktop.
Save thedeeno/4591474 to your computer and use it in GitHub Desktop.
counter = 0
while true
input = gets.chomp
if input == "BYE"
counter += 1
break if counter >= 3
else
counter = 0
end
if input == input.upcase
year = rand(1929..1951)
puts "NO, NOT SINCE " + year.to_s + "!"
else
puts "HUH?! SPEAK UP, SONNY!"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment