例如,
script.pl6 fileA.txt fileB.txt
然后运行它
script.pl6 fileC.txt fileD.txt .. fileZ.txt
您还可以使用带有slurpy参数的sub& MAIN,即
sub MAIN(*@args) { ... }
请注意,这将拒绝传递标志的调用.如果你想捕获它们,请使用
sub MAIN(*@args,*%flags) { ... }