Skip to content

Instantly share code, notes, and snippets.

@dminuoso
Created December 2, 2017 00:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dminuoso/f0f92229d2dd0689ca06861289d35a46 to your computer and use it in GitHub Desktop.
Save dminuoso/f0f92229d2dd0689ca06861289d35a46 to your computer and use it in GitHub Desktop.
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