紧急求助:如何写perl test.pl 123这样的程序?

紧急求助:如何写perl test.pl 123这样的程序?

紧急求助:如何写perl test.pl 123这样的程序?
C语言中可以写这样的程序:

#include <stdio.h>
void main(int argc, char *argv[])
{int i;
for(i=1;i<argc;i++)
printf("%s",argv[i]);
}

这样执行这个test.exe 123,就会显示出123。

我现在想要Perl程序也这样,执行perl test.pl 123,也显示出123,怎么办?
Perl程序只要一...
Perl程序只要一行

print @ARGV;
高手...