Skip to content

Instantly share code, notes, and snippets.

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