Created
March 27, 2016 06:04
-
-
Save duckinator/77bad50007d3165a55b5 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
X = 1 | |
class A | |
X = 2 | |
end | |
class A::B | |
p X # => 1 | |
end |
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
X = 1 | |
class A | |
X = 2 | |
end | |
class A | |
class B | |
p X # => 2 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment