When I want continue I just put  loop 1 [...]
inside my loop:

>> repeat n 5 [loop 1 [if n = 3 [break] ?? n]]
n: 1
n: 2
n: 4
n: 5
== 5

Notice the 3 has been skipped.

Anton.

> is there any word (I haven't found any) which skips one iteration 
> of a loop at current point.
> 
> 
> like in:
> 
> 
> foreach number [ 8 0 2 4 0 5][
>       if number = 0 [continue]
>       print 100 / number
> ]
> 
> 
> TIA!
> 
> 
> -MAx

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.

Reply via email to