Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: continue word

From: nitsch-lists:netcologne at: 18-Oct-2003 0:46

Maxim wants foreach number [ 8 0 2 4 0 5][ if number = 0 [CONTINUE] print 100 / number ] which is not available, but foreach number [ 8 0 2 4 0 5][ catch[ if number = 0 [throw 'continue] print 100 / number ] ] does the trick. use catch/name , throw/name if you need to catch other stuff too. -Volker Am Freitag, 17. Oktober 2003 23:31 schrieb Maxim Olivier-Adlhoch: