Skip to content

Instantly share code, notes, and snippets.

@vjdhama
Created September 29, 2015 11:59
Show Gist options
  • Save vjdhama/61a5bd041f0d085a8543 to your computer and use it in GitHub Desktop.
Save vjdhama/61a5bd041f0d085a8543 to your computer and use it in GitHub Desktop.
Method overloading
def add(x, y)
x + y
end
def add(x : String, y : Int32)
x + y.to_s
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