我的test.pl脚本如下。
#!C:\Perl\bin\perl.exe
use strict;
use warnings;
sub printargs
{
print "@_\n";
}
&printargs("hello", "world"); # Example prints "hello world"
如果我替换printargs("hello", "world");
为print($a, $b);
.
当我在命令行运行perl test.pl hello world时,如何将 'hello' ,'world' 传递给 $a , $b ,谢谢。