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

[REBOL] Re: A collection of garbage

From: fsievert:uos at: 9-Jul-2003 10:22

Hi Carl, there is still a strange thing with nested foreach, do/next and reduce's. test: func [:looper x] [ if x < 100 [looper z [1] [ test looper x + 1 prin "." ]]] [test repeat 1] and [test foreach 1] are doing exactly the same thing, but loop 22 [test repeat 1] works, while loop 22 [test foreach 1] crashes. Turn recycler off to see both working. You can see the same problem with do/next and reduce. Frank On Tue, 8 Jul 2003, Carl at REBOL wrote: