Guest User

Untitled

a guest
Oct 19th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.13 KB | None | 0 0
  1. class A
  2.   def foo ; p "a" end
  3.   def bar ; foo end
  4. end
  5. class B
  6.   def foo ; p "b" end
  7. end
  8. B.new.instance_exec &A.new.method(:foo)
Add Comment
Please, Sign In to add comment