Created
October 20, 2018 01:14
-
-
Save pedrozath/cea3b47dbda699907bbb91b33abc70b3 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
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