Last active
June 1, 2018 21:50
-
-
Save lchanmann/0e151b8d10af2fa4cce6a8cd1984e8f1 to your computer and use it in GitHub Desktop.
bob_bot_4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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