Skip to content

Instantly share code, notes, and snippets.

@louism2
Created November 13, 2014 07:17
Show Gist options
  • Save louism2/6dc36983c8bc8413aad5 to your computer and use it in GitHub Desktop.
Save louism2/6dc36983c8bc8413aad5 to your computer and use it in GitHub Desktop.
module One
CONST_ONE = "constant one"
module Two
CONST_TWO = "constant two"
end
end
One::CONST_ONE # => constant one
One::Two::CONST_TWO # => constant two
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment