Skip to content

Instantly share code, notes, and snippets.

@ZASMan
Created October 13, 2015 02:17
Show Gist options
  • Save ZASMan/11e5ed402219e937dd24 to your computer and use it in GitHub Desktop.
Save ZASMan/11e5ed402219e937dd24 to your computer and use it in GitHub Desktop.
program3.rb
def choose
puts "Do you like programming? Yes or no 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