[REBOL]
From: riusa::email::it at: 3-May-2002 17:20
hi all, a question: why the following code does not work? (it should call the loop every 10 seconds, and in the loop, show 3 random numbers: one per second). I see always fast numbers running in the "info" (no pause!). rebol [] view layout [ a: info rate 10 feel [ engage: func [face act evt] [ loop 3 [ face/text: random 100 show face wait 1 ] ] ] ] --Alessandro--