Guest User

Untitled

a guest
Oct 20th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. x = Class.new do
  2. def initialize
  3. puts self.class.to_s
  4. end
  5. end
  6.  
  7. x.new
  8. # outputs <Class:XXXXXXXXXX>
  9.  
  10. Batata = x
  11. Batata.new
  12. # outputs Batata
  13.  
  14. Tomate = x
  15. Tomate.new
  16. # outputs Batata
Add Comment
Please, Sign In to add comment