Skip to content

Instantly share code, notes, and snippets.

@banister

banister/a.rb Secret

Created August 21, 2012 01:10
Show Gist options
  • Save banister/d0c5069b294b979a6c15 to your computer and use it in GitHub Desktop.
Save banister/d0c5069b294b979a6c15 to your computer and use it in GitHub Desktop.
for foo in 1..10
end
# => 1..10
foo
# => 10
(1..10).each { |bar| }
# => 1..10
bar
# => #<NameError: undefined local variable or method `bar' for main:Object>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment