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

[REBOL] Re: cyclic values

From: anton:lexicon at: 29-Sep-2002 19:55

That's a bit unclear what you want. What do you want it for? If you have an increasing number n, then you can do this: colors: [red green blue] n: 1 loop 200 [ color: pick colors either n > length? colors [n][1] n: n + 1 ] Anton.