Created
September 5, 2013 12:19
-
-
Save apeiros/6449394 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
## file a.rb | |
module A | |
X = 1 | |
end | |
## file a/b.rb | |
module A | |
class B | |
def self.x | |
X | |
end | |
end | |
end | |
## somewhere else | |
puts A::B.x # -> 1 |
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
## a.rb | |
module A | |
X = 1 | |
end | |
## a/b.rb | |
class A::B | |
def self.x | |
X | |
end | |
end | |
## somewhere else | |
puts A::B.x # !> NameError: uninitialized constant A::B::X |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment