Guest User

Untitled

a guest
Feb 26th, 2012
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. o = Object.new
  2. def o.x
  3. :hello
  4. end
  5.  
  6. o.instance_eval { x } #=> :hello
  7.  
  8. x = 100
  9.  
  10.  
  11. o.instance_eval { x } #=> 100
Add Comment
Please, Sign In to add comment