我正在尝试使 ¬ 成为逻辑否定运算符。
¬ True;
multi sub prefix:<¬> ($n) {
return not $n;
}
当我运行上述程序时,它返回此错误:
$ perl6 test.pl6 ===SORRY!=== Error while compiling /home/devXYZ/test.pl6 Bogus statement at /home/devXYZ/test.pl6:1 ------> <BOL>⏏¬ True; expecting any of: prefix term
有谁知道可能是什么原因?