Skip to content

Instantly share code, notes, and snippets.

@lesguillemets
Created August 29, 2013 03:51
Show Gist options
  • Save lesguillemets/6374072 to your computer and use it in GitHub Desktop.
Save lesguillemets/6374072 to your computer and use it in GitHub Desktop.
class Hello(object):
def __init__(self, friend):
self.friend = friend
def sayhello(self):
print "Hello, %s!"%(self.friend)
# helloworld = Hello('World')
# helloworld.sayhello()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment