Skip to content

Instantly share code, notes, and snippets.

@jschementi
Created July 23, 2009 12:57
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 jschementi/152872 to your computer and use it in GitHub Desktop.
Save jschementi/152872 to your computer and use it in GitHub Desktop.
def add x, y
x + y
end
add 3, 4
%python
class Bob(object):
def __init__(self):
self._bob = "Bob"
def bob(self):
return self._bob
Bob().bob()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment