Skip to content

Instantly share code, notes, and snippets.

@zeroeth
Created October 26, 2010 01:54
Show Gist options
  • Save zeroeth/646181 to your computer and use it in GitHub Desktop.
Save zeroeth/646181 to your computer and use it in GitHub Desktop.
Class Kelly
def have_another_beer?
return "yes".upcase
end
def racist?
ALWAYS_ESPECIALLY_THE_JEWS
end
def a_robot?
%w(bzzzt beep boop wrrrr).rand
end
end
kelly = Kelly.new
=> #<Kelly:0x10192a480>
kelly.have_another_beer?
=> "YES"
kelly.a_robot?
=> "bzzzt"
kelly.a_robot?
=> "wrrrr"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment