Hi,

I noticed quite a difference between the two method who "looks" the same to me. Is it normal ?

I use a rc image (haven't tested in squeak). And it's the same on windows and linux.

count := 0.
[1 to: 10000000 do: [:i | count :=count + 1]] timeToRun." 677"

count := 0.
[10000000 timesRepeat: [count := count + 1]] timeToRun" 2571"

If not normal, I'll open a issue.

Thanks

--
C��drick