What does the ::MyClass/MyModule scope operator do in Ruby, what is its purpose?
::MyClass/MyModule
"global scope" just means the constant is defined on the Object class. So ::SomeModule is shorthand for Object::SomeModule
Object
::SomeModule
Object::SomeModule