Skip to content

Instantly share code, notes, and snippets.

@lchanmann
Last active June 1, 2018 21:20
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/2fa66cd92778cba37d206488fc684652 to your computer and use it in GitHub Desktop.
Save lchanmann/2fa66cd92778cba37d206488fc684652 to your computer and use it in GitHub Desktop.
bob_bot_3
class BobBot < Visitor
def respond_to_question
'Sure.'
end
def respond_to_yell
'Woah, chill out!'
end
def respond_to_silence
'Fine. Be that way!'
end
def respond_to_anything
'Whatever.'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment