Skip to content

Instantly share code, notes, and snippets.

@vjdhama
Created September 29, 2015 12:00
Show Gist options
  • Save vjdhama/b0602504702cd87089f8 to your computer and use it in GitHub Desktop.
Save vjdhama/b0602504702cd87089f8 to your computer and use it in GitHub Desktop.
Method overloading
def add(x, y)
x + y
end
add(1, 2)
add("foo", "bar")
add("foo", 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment