Guest User

Untitled

a guest
Jul 20th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. module Foo
  2.  
  3. def bar
  4. puts 'bar'
  5. end
  6.  
  7. end
  8.  
  9. include Foo
  10.  
  11. bar # => bar
  12.  
  13. module Foo
  14.  
  15. def bar
  16. puts 'woo'
  17. end
  18.  
  19. end
  20.  
  21. bar # => woo
Add Comment
Please, Sign In to add comment