代码搜索:如何学习 PL?
找到约 10,000 项符合「如何学习 PL?」的源代码
代码结果 10,000
www.eeworm.com/read/285976/8796057
pl rand.pl
sub my_srand {
my ($seed) = @_;
# Returns a random number generator function
# Being predictive, the algorithm requires you to supply a
# random initial value.
my $rand = $s
www.eeworm.com/read/285976/8796063
pl makefile.pl
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'Test', # Name of package
);
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
);