Look up the method, the full signature is Transcript>>show: aString.
Therefore, try the following:
1 to: 100 do: [ :index | Transcript show: index displayString ; cr. ]
--
Regards,
Daryl
<< Sun, Zoom, Spark! >>
"Jerome Chan" <
[hidden email]> wrote in message
news:
[hidden email]...
> How come I can't do this in Dolphin Smalltalk 4.0?
>
> 1 to: 100 do: [
> :index |
> Transcript show: index ; cr.
> ]
>
> I get a SmallInteger(Object)>>DoesNotUnderstand response.