One way is to make singleton, in this answer .
In general, you make a class variable and a companion class method so that an object becomes globally accessible. See the above singleton for an example. Such a variable is then accessed from other sources:
global := MyClass myGlobalVar
To become globally mutable, make a mutator class method and name it like this:
MyClass myGlobalVar: true
There are other ways, but this one with class variables carries over around Smalltalk dialects, so it is the most reliable way.
source share