Ah! I understood what was happening. I really needed select all code to execute, but I didn't know is needed to open the Trascript browser to exhibit the result. Other thing was I had not selected completely code. Sometimes some part of the code don't was selected properly.
:-)Em 26 de setembro de 2011 16:30, Alexandre Bergel-7 [via Smalltalk] <[hidden email]> escreveu:
Of course, you should have the transcript open (cmd-t)Alexandre
On 26 Sep 2011, at 15:34, Stéphane Ducasse wrote:
> just copy and paste it in workspace
> select everything and do it.
> And it should work
> Moose has nothing special to do with a possible bug.
>
> It works also when putting spaces
>
> |i|
> i := 5.
> [ i >0 ] whileTrue:[
> Transcript show: ((i*2) asString) ; cr.
> i := i - 1.
> ].