Hi guys I wonder if this is me that miss something important… but here is what I did:
Color>>printOn: aStream
| name |
Transcript show:'x'.
(name := self name) ifNotNil:
[ ^ aStream
nextPutAll: 'Color ';
nextPutAll: name ].
self storeOn: aStream
then I type
1 makeAnError and execute it.
and in the transcript I get
xxxxxxxxxxxxxxxxxxxxxSmallInteger
I'm totally puzzled why would we printOn: color ? before even opening a browser.
stef
