Linux伊甸园论坛 » PHP,PERL,Python » 请问有没有Perl的编译器?
初来乍到
注册用户
查看详细资料
TOP
注册会员
wj
版主
Clark J. Wang
查看个人网站
[color=blue]# cat foo.pl[/color] #!/usr/bin/perl -w use strict; print "hello world\n"; [color=blue]# ./foo.pl[/color] hello world [color=blue]# perlcc -o foo foo.pl # ./foo[/color] hello world