Guest User

Untitled

a guest
Feb 19th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #!/usr/bin/env ruby
  2.  
  3. module Fabulous
  4. def name
  5. "Fabulous"
  6. end
  7. end
  8.  
  9. class Migzy
  10. def name
  11. "Migzy"
  12. end
  13. end
  14.  
  15. Migzy.send(:include, Fabulous)
  16. m = Migzy.new
  17. puts m.name
  18. # => Migzy
Add Comment
Please, Sign In to add comment