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

[REBOL] Re: Linguistic influences

From: rotenca:telvia:it at: 13-May-2002 0:04

Hi Joel,
> > result: copy [] > > r: [into r | set x skip (insert tail result x)] > > parse/all serie [some r] > > > > It is the more simple and the more fast (i think). > But is it correct? Here's what happened when I tried to use the > expressions copied from your email:
As you told us, it is not the example, but the idea.:-) There was an error, the position of 'some. This should be correct: result: copy [] r: [some [into r | set x skip (insert tail result x)]] parse/all serie r If it doesn't have to be correct, I can make it as fast as you want! When the new version flies, probably there is something wrong (a debugging rule of mine :-) --- Ciao Romano