代码搜索:如何学习 PL?
找到约 10,000 项符合「如何学习 PL?」的源代码
代码结果 10,000
www.eeworm.com/read/188790/8515132
pl contents.pl
# LaTeX2HTML 96.1 (Feb 5, 1996)
# Associate contents original text with physical files.
$key = q/toc_section_info/;
${$key} = '' unless (${$key});
$key = q/0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0/;
www.eeworm.com/read/188349/8547125
pl findleak.pl
#!/usr/bin/perl
# From: Ed Beroset
my %mem = {};
my %alloc = {};
while()
{
if (/realloc\((0x[0-9a-f]+).*\).*returns \((0x[0-9a-f]+)/)
{
www.eeworm.com/read/433086/8548456
pl ipch.pl
use strict;
use warnings;
open(FILEHANDLF,"switch_data.txt")||die"can not open filename:$!";
open(FILEHANDLES,"ip.txt")||die"can not open filename:$!";
open(FILEHANDLE,">>ip_mac.txt")|| die"ca
www.eeworm.com/read/433086/8548468
pl expect.pl
use Expect;
use strict;
use warnings;
sub readdata{
open(FILEHANDLE,"switch.txt")||die"can not open filename:$!";
my(@array)=;
chomp@array;
close(FILEHANDLE);
return(@array);
}
www.eeworm.com/read/433086/8548484
pl macch.pl
use strict;
use warnings;
open(FILEHANDLF,"switch_dara.txt")||die"can not open filename:$!";
open(FILEHANDLES,"mac.txt")||die"can not open filename:$!";
open(FILEHANDLE,">>mac_ip.txt")|| die"c
www.eeworm.com/read/388988/8557736
pl now.pl
#!/usr/bin/perl
#ident "$Id: now.pl,v 1.3 1998/02/04 06:23:54 hpa Exp $"
#
# Print the time as a hexadecimal integer
#
printf "0x%08x\n", time;
www.eeworm.com/read/187682/8609099
po pl.po
msgid ""
msgstr ""
"Project-Id-Version: gqview\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-06-13 20:31-0400\n"
"PO-Revision-Date: 2004-01-23 21:53+0100\n"
"Last-Translator: Wit Wiliński
www.eeworm.com/read/187682/8609223
gmo pl.gmo
www.eeworm.com/read/187628/8613559
pl0 for.pl0
PROGRAM EX0;
VAR A,B,C;
BEGIN
A:=88;
read(B);
C:=A-B;
A--;
WRITE(A);
FOR B:=1 TO 10 DO
BEGIN
C:=A+1;
write(B);
WRITE(C);
END
END.
www.eeworm.com/read/187544/8626144
pl hostinfo.pl
#!/usr/bin/perl
$who = "/usr/bin/who | wc -l";
$ps = "/bin/ps -ef h | wc -l";
chomp($numUsers = int( `$who` ));
chomp($numProcesses = int( `$ps` ));
print "$numUsers\n";
print "$numProcesses\n";
#