Last active
January 10, 2018 01:47
-
-
Save gbpereira/aa92f29542343024ae7c 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
# métodos de classe | |
class SomeClass | |
def self.handle | |
puts 'class method' | |
end | |
end | |
puts SomeClass.handle | |
# adicona um método singleton ao objeto c | |
c = SomeClass.new | |
def c.handle | |
puts 'singleton method' | |
end | |
puts c.handle |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment