Created
July 3, 2013 17:16
-
-
Save romulostorel/5920662 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
class Teste | |
def metodo_instancia | |
end | |
def self.metodo_classe | |
end | |
end | |
Chamando métodos de classe ---------- | |
Teste.metodo_classe | |
Chamando método de instancia------ | |
teste = Teste.new | |
teste.metodo_instancia | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment