Guest User

Untitled

a guest
May 24th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. puts RUBY_VERSION
  2.  
  3. class A
  4. def a
  5. "a"
  6. end
  7. end
  8.  
  9. module B1
  10. def a
  11. "b" + super
  12. end
  13. end
  14.  
  15. module B2
  16. def a
  17. "c" + super
  18. end
  19. end
  20.  
  21. a = A.new
  22. a.extend(B1)
  23. a.extend(B2)
  24.  
  25. puts a.a
Add Comment
Please, Sign In to add comment