Guest User

Untitled

a guest
May 26th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. module B
  2. def foo
  3. puts 'B'
  4. end
  5. end
  6.  
  7. class A
  8. include B
  9. def foo
  10. puts 'A'
  11. end
  12. end
  13.  
  14. test = A.new
  15.  
  16. test.foo #=> A
Add Comment
Please, Sign In to add comment