Created
December 14, 2011 13:21
-
-
Save denisdefreyne/1476548 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
100 | |
"method" | |
nil | |
"local-variable" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def foo | |
100 | |
end | |
def test | |
puts foo | |
p defined?(foo) | |
if false | |
foo = 200 | |
end | |
puts foo | |
p defined?(foo) | |
end | |
test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment