Guest User

Untitled

a guest
Apr 27th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. class Foo
  2. end
  3.  
  4. animals = [ "cat", "dog" ]
  5.  
  6. foo = Foo.new
  7.  
  8. m = Module.new
  9. m.send(:define_method, :bar) do
  10. animals
  11. end
  12.  
  13. foo.extend(m)
  14.  
  15. puts foo.bar.inspect
Add Comment
Please, Sign In to add comment