1
在EOS停止Raku语法(字符串结尾)
在学习一种音乐语言的翻译者(从ABC到Alda)作为学习Raku DSL能力的借口的过程中,我注意到似乎没有一种方法可以终止.parse!这是我缩短的演示代码: #!/home/hsmyers/rakudo741/bin/perl6 use v6d; # use Grammar::Debugger; use Grammar::Tracer; my $test-n01 = q:to/EOS/; a b c d e f g A B C D E F G EOS grammar test { token TOP { <score>+ } token score { <.ws>? [ | <uc> | <lc> ]+ <.ws>? } token …