Skip to content

Instantly share code, notes, and snippets.

@romulostorel
Created July 3, 2013 17:16
Show Gist options
  • Save romulostorel/5920662 to your computer and use it in GitHub Desktop.
Save romulostorel/5920662 to your computer and use it in GitHub Desktop.
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