Created
November 21, 2011 13:56
-
-
Save filiptepper/1382682 to your computer and use it in GitHub Desktop.
Today I Learned
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 Oink | |
class Doink | |
end | |
end | |
> Kernel.const_get("Oink::Doink") | |
NameError: wrong constant name Oink::Doink | |
> Kernel.const_get("Oink").const_get("Doink") | |
=> Oink::Doink |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment