Guest User

Untitled

a guest
Feb 21st, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. module Bar
  2. def hello
  3. "original"
  4. end
  5. end
  6.  
  7. module Baz
  8. def hello
  9. "new"
  10. end
  11. end
  12.  
  13. class Foo
  14. include Bar
  15. include Baz
  16. end
  17.  
  18. f = Foo.new
  19. f.extend Bar
  20.  
  21. p f.hello
Add Comment
Please, Sign In to add comment