Hi,
Pharo is working towards less dependency on globals like these, so the new way would be like this:

� � � �(self environment at: #String) new

(Where environment essentially does 'Smalltalk globals'),

In my image (Pharo 1.3) #environment is defined in Behavior so I need to call:

(self class environment at: #String) new

have I missed something...

Nick �