Skip to content

Instantly share code, notes, and snippets.

@pedrozath
Created October 20, 2018 01:14
Show Gist options
  • Save pedrozath/cea3b47dbda699907bbb91b33abc70b3 to your computer and use it in GitHub Desktop.
Save pedrozath/cea3b47dbda699907bbb91b33abc70b3 to your computer and use it in GitHub Desktop.
x = Class.new do
def initialize
puts self.class.to_s
end
end
x.new
# outputs <Class:XXXXXXXXXX>
Batata = x
Batata.new
# outputs Batata
Tomate = x
Tomate.new
# outputs Batata
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment