Created
July 5, 2012 12:57
-
-
Save ku1ik/3053536 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
class A | |
def foo | |
"jola" | |
end | |
def bar | |
p foo | |
if false | |
foo = "misio" | |
end | |
p foo | |
end | |
end | |
A.new.bar | |
# What will be the output? And why? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment