Guest User

Untitled

a guest
May 27th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. module Monkeyedwith
  2. def monkeyed
  3. puts "Invisible Cavemen!"
  4. end
  5. end
  6.  
  7. class MonkeyString < String
  8. include Monkeyedwith
  9. end
  10.  
  11. madness = MonkeyString.new("madness") # => "madness"
  12.  
  13. madness.monkeyed
  14. # Invisible Cavemen!
  15. # => nil
Add Comment
Please, Sign In to add comment