Skip to content

Instantly share code, notes, and snippets.

@laiso
Created January 21, 2010 11:48
Show Gist options
  • Save laiso/282745 to your computer and use it in GitHub Desktop.
Save laiso/282745 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
someValue = "Hello"
somevalue = "World"
def helloWorld(say)
p say
end
def helloworld(say)
p 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