Skip to content

Instantly share code, notes, and snippets.

@laiso
Created January 21, 2010 11:45
Show Gist options
  • Save laiso/282742 to your computer and use it in GitHub Desktop.
Save laiso/282742 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
someValue = "Hello"
somevalue = "World"
def helloWorld(say):
print say
def helloworld(say):
print say+say
helloWorld(someValue+somevalue)#HelloWorld
helloworld(someValue+somevalue)#HelloWorldHelloWorld
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment