Created
September 29, 2015 12:00
-
-
Save vjdhama/b0602504702cd87089f8 to your computer and use it in GitHub Desktop.
Method overloading
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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