代码搜索:PL 有哪些应用?
找到约 10,000 项符合「PL 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/285976/8796077
pl test.pl
use Test;
Test::func_2_args(35, "bombay");
Test::func_with_keywords(25, "San Francisco");
www.eeworm.com/read/285976/8796084
pl makefile.pl
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'Fractal', # Name of package
'LIBS' => ['-L/home/sriram/ftp/gd1.2 -lgd'], # All custom libraries to be linked with
'INC'
www.eeworm.com/read/285976/8796102
pl test.pl
use Fractal;
Fractal::draw_mandel('snowman.gif', 300, 300, -1.5, 1.0, 2.0, 20);
www.eeworm.com/read/285976/8796111
pl makefile.pl
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'ArrayRet', # Name of package
'OBJECT' => 'ArrayRet_wrap.o'
);
www.eeworm.com/read/285976/8796115
pl test.pl
use ArrayRet;
$, = " "; # Output record separator. Used by print for separating list elements.
$rl = ArrayRet::test();
print "ArrayRet returned ", @$rl, "\n";
www.eeworm.com/read/285976/8796129
pl makefile.pl
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'Fractal', # Name of package
'LIBS' => ['-L/home/sriram/ftp/gd1.2 -lgd'], # All custom libraries to be linked with
'INC'
www.eeworm.com/read/285976/8796155
pl test.pl
use Fractal;
Fractal::draw_mandel('snowman.gif', 300, 300, -1.5, 1.0, 2.0, 20);
www.eeworm.com/read/285976/8796160
pl makefile.pl
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'Car', # Name of package
);
www.eeworm.com/read/285976/8796174
pl test.pl
use Car;
foreach (1 .. 3) {
$c = Car->new();
$c->drive();
}
www.eeworm.com/read/285976/8796182
pl makefile.pl
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'Car', # Name of package
);