my 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);
.
Как передать hello, world в $ a, $ b при запуске perl test.pl hello world в командной строке, спасибо.