Created
December 2, 2017 00:57
-
-
Save dminuoso/f0f92229d2dd0689ca06861289d35a46 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
module M | |
X = 1 | |
end | |
Object.include M | |
A = String | |
puts A::X | |
X = 23 | |
begin | |
puts A::X | |
rescue | |
end | |
puts M::X |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment