Skip to content

Instantly share code, notes, and snippets.

@claudijd
Created August 13, 2014 03:37
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 claudijd/1738314303ffb3cdec78 to your computer and use it in GitHub Desktop.
Save claudijd/1738314303ffb3cdec78 to your computer and use it in GitHub Desktop.
Neo's brain before monkey patching
class Brain
def initialize
@skills = [
"hide",
"run",
]
end
def what_to_do?
@skills[rand(2)]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment