Dec. 6, 2012
3:12 p.m.
this is not a bug, but limitation. delay object(s) are not reentrant: means that you shall not use same delay instance multiple times, i.e. delay := 1 seconds asDelay. 10 timesRepeat: [ [ delay wait ] fork ]. instead you shall create a fresh instance for each "delay" intent: 10 timesRepeat: [ [ 1 seconds asDelay wait ] fork ]. -- Best regards, Igor Stasenko.