Skip to content

Instantly share code, notes, and snippets.

@lchanmann
Last active June 1, 2018 21:50
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 lchanmann/0e151b8d10af2fa4cce6a8cd1984e8f1 to your computer and use it in GitHub Desktop.
Save lchanmann/0e151b8d10af2fa4cce6a8cd1984e8f1 to your computer and use it in GitHub Desktop.
bob_bot_4
class AliceBot < Visitor
def respond_to_question
"Yeah, I'm listening."
end
def respond_to_yell
'🤐'
end
def respond_to_silence
"I can't hear you."
end
def respond_to_anything
'No problem.'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment