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/80a50ec8d45d3b28556f4148a5ab6a1f to your computer and use it in GitHub Desktop.
Save sbernhardi/80a50ec8d45d3b28556f4148a5ab6a1f 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")
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