'From Squeak3.9alpha of ''2 November 2004'' [latest update: #6474] on 30 November 2004 at 10:01:16 pm'! IdentityDictionary subclass: #SystemDictionary instanceVariableNames: 'cachedClassNames organization ' classVariableNames: 'LastImageName LastQuitLogPosition LowSpaceProcess LowSpaceSemaphore MemoryHogs ShutDownList SourceFileVersionString SpecialSelectors StartUpList StartupStamp SystemChanges ' poolDictionaries: '' category: 'System-Support'! !SystemDictionary methodsFor: 'accessing' stamp: 'sd 11/30/2004 22:00'! organization "Return the organizer for the receiver" ^organization! ! !SystemDictionary methodsFor: 'accessing' stamp: 'sd 11/30/2004 21:58'! organization: anOrganizer organization := anOrganizer! ! "Postscript: Leave the line above, and replace the rest of this comment by a useful one. Executable statements should follow this comment, and should be separated by periods, with no exclamation points (!!). Be sure to put any further comments in double-quotes, like this one." Smalltalk organization: SystemOrganization !