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

[REBOL] Re: continue word

From: antonr:iinet:au at: 18-Oct-2003 15:54

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.