Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
Environment method initializeWithName:
Last updated at 5:14 am UTC on 29 September 2016
 initializeWithName: aString
 	| smalltalk |
 	self initialize.
 	info := EnvironmentInfo name: aString.
 .
 	smalltalk := SmalltalkImage basicNew.
 	smalltalk globals: self.
 	declarations at: #Smalltalk put: smalltalk.
 	declarations at: #Undeclared put: undeclared.