Skip to content

Instantly share code, notes, and snippets.

@egrueter-dev
Created December 20, 2014 21:10
Show Gist options
  • Save egrueter-dev/06110335cf3e3f682868 to your computer and use it in GitHub Desktop.
Save egrueter-dev/06110335cf3e3f682868 to your computer and use it in GitHub Desktop.
Deaf Grandma
puts "Say Something to Grandma"
bye = 0
while bye < 3
reply = gets.chomp
if reply == "BYE"
bye += 1
elsif reply == reply.upcase #condition, not variable put ==
puts "No, not since #{rand(1930..1950)}" #string interpolation "#{variable}" #Use .. to do numbers inclusive (... exclusive
else
puts "What?????"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment