Skip to content

Instantly share code, notes, and snippets.

@sbernhardi
Last active November 10, 2016 15:43
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 sbernhardi/0dea9dd44597e0ce2f0be250bc3a3fa5 to your computer and use it in GitHub Desktop.
Save sbernhardi/0dea9dd44597e0ce2f0be250bc3a3fa5 to your computer and use it in GitHub Desktop.
CF Ruby 01
def choose
puts "Do you like programming?"
choice = gets.chomp
if (choice.downcase == "yes" || choice.downcase == "yep" )
puts "Cool, me too!"
elsif (choice.downcase == "no")
puts "Too bad. Get lost!"
else
puts "I have no idea, what you just said."
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment