代码搜索:如何学习 PL?
找到约 10,000 项符合「如何学习 PL?」的源代码
代码结果 10,000
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
);
www.eeworm.com/read/285976/8796197
pl test.pl
use Car;
foreach (1 .. 3) {
$c = Car->new();
$c->drive();
}
www.eeworm.com/read/285976/8796207
pl makefile.pl
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'Car', # Name of package
);
www.eeworm.com/read/285976/8796221
pl test.pl
use Car;
foreach (1 .. 3) {
$c = Car::new_car();
Car::drive($c);
}
www.eeworm.com/read/285976/8796271
pl msgdemo.pl
#
# testmsg.pl - Used for testing the Msg.pm module
# Invoke as testmsg.pl {-client|-server}
#
use Msg;
use strict;
my $i = 0;
sub rcvd_msg_from_server {
my ($conn, $msg, $err) =
www.eeworm.com/read/285976/8796274
pl rpcdemo.pl
use RPC;
my $host = 'localhost';
my $port = 1300;
my $prog;
foreach $arg (@ARGV) {
if ($arg eq '-server') {
server_start();
} elsif ($arg eq '-client') {
client_st
www.eeworm.com/read/285976/8796294
pl oscar.pl
open (F, "oscar.txt") || die "Could not open database: $:";
%category_index = (); %year_index = ();
while (defined($line = )) {
chomp $line;
($year, $category, $name) = split (/:/, $lin
www.eeworm.com/read/285976/8796353
pl bind.pl
use DBI;
$dbname = 'DEMO732'; $user = 'scott';
$password = 'tiger'; $dbd = 'Oracle';
$dbh = DBI->connect ($dbname, $user, $password, $dbd);
if (!$dbh) {
print "Error connecting to database
www.eeworm.com/read/285976/8796357
pl select.pl
use DBI;
$dbname = 'DEMO732'; $user = 'scott';
$password = 'tiger'; $dbd = 'Oracle';
$dbh = DBI->connect ($dbname, $user, $password, $dbd);
if (!$dbh) {
print "Error connecting to database