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

[REBOL] Re: [PARSE] The THRU keyword description?

From: peta::mailinator::com at: 5-Dec-2008 17:20

Another surprise: a: [thru b] ; is defined recursively as: ar: [b | skip ar] ; Tests: b: "" parse "ab" [a to end] ; == false parse "ab" [ar to end] ; == true Peta