Created
December 16, 2015 15:34
-
-
Save nassredean/af6ad9969fa4d8a6b102 to your computer and use it in GitHub Desktop.
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
# case 1 | |
class B | |
def method1 | |
1 | |
end | |
end | |
# case 2 | |
class B | |
def method2 | |
2 | |
end | |
end | |
B.new.method1 | |
=> 1 | |
B.new.method2 | |
=> 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment