Hi Maxim.

The example you bring:

foreach number [ 8 0 2 4 0 5][
        if number = 0 [continue]
        print 100 / number
]

could just as well (better? ;-) ) be written as

foreach number [ 8 0 2 4 0 5][ [ if number > 0 [ print 100 / number ] ]

I wonder if the combination of if, either and any, all enables us to 
cover any and all  relevant cases?

Elan

Maxim Olivier-Adlhoch wrote:

>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
>---
>"You can either be part of the problem or part of the solution, but in the end, being 
>part of the problem is much more fun."
> 
>
>  
>


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

Reply via email to