I read chapter 15: http://www.rebol.com/docs/core23/rebolcore-15.html#section-8"
spacer: charset reduce [tab newline #" "]
spaces: [some spacer]
rule: ["a" spaces "b" spaces "c"]
parse/all "a b c" rule
is OK but if I change rule to just
rule: ["a" spaces copy varb to spaces "c"]
parse/all "a b c" rule
Rebol Console outputs error:
** Script Error: Invalid argument: some spacer
** Where: halt-view
** Near: parse/all "a b c" rule
>>
Why ?
Thanks.