Skip to content

Instantly share code, notes, and snippets.

@laiso
Created January 21, 2010 12:52
Show Gist options
  • Save laiso/282778 to your computer and use it in GitHub Desktop.
Save laiso/282778 to your computer and use it in GitHub Desktop.
someValue = "Hello"
somevalue = "World"
function helloWorld(say)
print(say)
end
function helloworld(say)
print(say..say)
end
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