#('hello' 'World') at: 2 put: 'Pharo'; yourself.
Esta versión no genera error:
smalltalk
myArray := #('hello' 'World').
myArray asOrderedCollection
at: 2 put: 'Pharo';
yourself.
#('hello' 'World') at: 2 put: 'Pharo'; yourself.
Esta versión no genera error:
smalltalk
myArray := #('hello' 'World').
myArray asOrderedCollection
at: 2 put: 'Pharo';
yourself.