Skip to content

Instantly share code, notes, and snippets.

@mmower
Created August 20, 2008 08:06
Show Gist options
  • Save mmower/6338 to your computer and use it in GitHub Desktop.
Save mmower/6338 to your computer and use it in GitHub Desktop.
>> def f(&b)
>> pp binding
>> pp b.binding
>> yield
>> end
=> nil
>> f { pp binding }
#<Binding:0x10b3f3c>
#<Binding:0x10b3230>
#<Binding:0x10b2510>
=> nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment