Skip to content

Instantly share code, notes, and snippets.

@Socratic1
Created September 2, 2015 16:28
Show Gist options
  • Save Socratic1/f5a85be3a1597b9bc82d to your computer and use it in GitHub Desktop.
Save Socratic1/f5a85be3a1597b9bc82d 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment