Skip to content

Instantly share code, notes, and snippets.

@rafaellima
Created July 13, 2012 03:37
Show Gist options
  • Save rafaellima/3102557 to your computer and use it in GitHub Desktop.
Save rafaellima/3102557 to your computer and use it in GitHub Desktop.
name spacing applies to the constants
module A
module B
end
end
p A::B
module A
C = 10
end
p A::C
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment