第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
は問題ありませんが、ルールを次のように変更すると
rule: ["a" spaces copy varb to spaces "c"]
parse/all "a b c" rule
Rebol コンソール出力エラー:
** Script Error: Invalid argument: some spacer
** Where: halt-view
** Near: parse/all "a b c" rule
>>
なんで ?
ありがとう。