Advertisement
Guest User

Untitled

a guest
Oct 4th, 2012
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.12 KB | None | 0 0
  1. class Object
  2.   def x
  3.     "Object's x"
  4.   end
  5. end
  6.  
  7. def foo
  8.   x = "Hello!"
  9.   Object.new.instance_eval {puts x}
  10. end
  11.  
  12. foo
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement