Construct A Constant From A String
> Object.const_get("Math")
#=> Math
> Object.const_get("Math")::PI
#=> 3.141592653589793> Object.const_get("Math::PI")
#=> 3.141592653589793> Math.const_get("PI")
#=> 3.141592653589793> Math.const_get(:PI)
#=> 3.141592653589793Last updated