Skip to content

Instantly share code, notes, and snippets.

@eniolopes
Created May 31, 2011 13:21
Show Gist options
  • Save eniolopes/1000488 to your computer and use it in GitHub Desktop.
Save eniolopes/1000488 to your computer and use it in GitHub Desktop.
class Classe
def initialize(hash)
hash.each do |chave, valor|
p "#{chave}: #{valor}"
end
end
end
c = Classe.new({:nome => "Enio", :sobrenome =>" Lopes"})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment