Skip to content

Instantly share code, notes, and snippets.

@raph-amiard
Created November 9, 2010 10:37
Show Gist options
  • Save raph-amiard/668941 to your computer and use it in GitHub Desktop.
Save raph-amiard/668941 to your computer and use it in GitHub Desktop.
class Lion(object):
def run():
print "THIS LION IS RUNNING"
class Panthere(object):
def run():
print "THIS PANTHERE IS RUNNING"
animals = [Panthere(), Lion()]
for a in animals:
a.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment