Guest User

Untitled

a guest
Jun 23rd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. class A
  2. def initialize
  3. p self.class
  4. end
  5. end
  6.  
  7. class B < A
  8. def initialize
  9. super
  10. end
  11. end
  12.  
  13. B.new #=> B
Add Comment
Please, Sign In to add comment