Skip to content

Instantly share code, notes, and snippets.

@videlais
Created April 14, 2015 01:42
Show Gist options
  • Save videlais/be90c2a38ae8a81d98db to your computer and use it in GitHub Desktop.
Save videlais/be90c2a38ae8a81d98db to your computer and use it in GitHub Desktop.
def good_response
puts "Looks like your name is Dan. Neat!"
end
def bad_response
puts "You are not a Dan!"
end
puts "What is your name?"
name = gets.chomp
case name
when "Dan"
good_response
else
bad_response
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment