Skip to content

Instantly share code, notes, and snippets.

@nassredean
Created December 16, 2015 15:34
Show Gist options
  • Save nassredean/af6ad9969fa4d8a6b102 to your computer and use it in GitHub Desktop.
Save nassredean/af6ad9969fa4d8a6b102 to your computer and use it in GitHub Desktop.
# 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