Guest User

Untitled

a guest
Jun 18th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1.  
  2. module Mod
  3. def a
  4. puts "Do nothing"
  5. end
  6. end
  7.  
  8. class Test
  9. include Mod
  10.  
  11. def b
  12. puts "Do Stuff"
  13. end
  14. alias :a :b
  15. end
  16.  
  17.  
  18. Test.new.a
Add Comment
Please, Sign In to add comment