Created
January 20, 2010 02:02
-
-
Save bradleybuda/281519 to your computer and use it in GitHub Desktop.
This file contains 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
if true | |
foo = 1 | |
else | |
bar = 2 | |
end | |
puts foo.inspect # output is "1" | |
puts bar.inspect # output is "nil" - bar is defined even though the if statement always fails | |
puts baz.inspect # raises NameError |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment