Skip to content

Instantly share code, notes, and snippets.

@kenoir
Created September 3, 2012 08:55
Show Gist options
  • Save kenoir/3607973 to your computer and use it in GitHub Desktop.
Save kenoir/3607973 to your computer and use it in GitHub Desktop.
Python HelloWorld
#!/usr/local/bin/python
class HelloWorld:
def say_hello(self,name):
print "Hello, ", name
helloWorld = HelloWorld()
name = "Kenny"
helloWorld.say_hello()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment