Skip to content

Instantly share code, notes, and snippets.

@jjb
Created October 14, 2011 00:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jjb/1285883 to your computer and use it in GitHub Desktop.
Save jjb/1285883 to your computer and use it in GitHub Desktop.
foo = 1
[2].each{|foo| }
# in ruby 1.8, foo in this scope is now 2
# in ruby 1.9, foo stays as it was before the block, 1. hooray!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment