Skip to content

Instantly share code, notes, and snippets.

@Spesm
Created December 10, 2018 00:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Spesm/c6050082a07b847277c50649124867d1 to your computer and use it in GitHub Desktop.
Save Spesm/c6050082a07b847277c50649124867d1 to your computer and use it in GitHub Desktop.
# def choose
# puts "Do you like programming? Yes or no please."
# choice = gets.chomp
# if (choice.downcase == "yes")
# puts "That\'s great!"
# elsif (choice.downcase == "no")
# puts "That\'s too bad!"
# else
# puts "That wasn\'t a yes or no."
# end
# end
# choose
def choose
puts "Do you like programming? Yes, no, or maybe please."
choice = gets.chomp
case choice.downcase
when "yes"
puts "That\'s great!"
when "no"
puts "That\'s too bad!"
when "maybe"
puts "Glad you are giving it a chance!"
else
puts "I have no idea what that means."
end
end
choose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment