代码搜索:如何学习 PL?
找到约 10,000 项符合「如何学习 PL?」的源代码
代码结果 10,000
www.eeworm.com/read/423094/10588394
pl avg-stats.pl
#!/usr/bin/perl -w
use strict;
my $argsfile;
if ($ARGV[0] eq "--args") {
shift(@ARGV);
$argsfile = shift(@ARGV);
}
my $log = shift;
if (!defined($log)) {
die "hi stupid, did you tell me where y
www.eeworm.com/read/423094/10588406
pl make-graph.pl
#!/usr/bin/perl -w
use strict;
use Getopt::Long;
my $xstat = "BW_TOTALS:overall_bw";
my @ystat = ("OVERALL_LOOKUPS:lookup_mean");
my $xlabel;
my @ylabel;
my $hulllabel = "BW_TOTALS:live_bw";
my $par
www.eeworm.com/read/423094/10588411
pl merge-stats.pl
#!/usr/bin/perl -w
use strict;
# check for args file first
my $argsfile;
if( $ARGV[0] eq "--args" ) {
shift(@ARGV);
$argsfile = shift(@ARGV);
}
my @logs;
my $logfile;
if ($ARGV[0] eq "--logs
www.eeworm.com/read/423094/10588414
pl run-simulations.pl
#!/usr/bin/perl -w
# Copyright (c) 2003 Jeremy Stribling
# Massachusetts Institute of Technology
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy
www.eeworm.com/read/277857/10598050
pl test2.pl
var a,b,c;
begin
read(a,b,c);
if a>0 then write(b);
write(a,b,c);
end.
www.eeworm.com/read/277857/10598057
pl test1.pl
const a=10;
var b,c;
procedure p;
begin
c:=b+a
end;
begin
read(b);
while b0 do
begin
call p; write(2*c); read(b)
end
end.
www.eeworm.com/read/277857/10598078
pl test4.pl
const n=20;
var f1,f2,f,i;
begin
f1:=1;
f2:=1;
i:=1;
while i
www.eeworm.com/read/277857/10598106
cpp pl0.cpp
#include
#include "MAIN.h"
#include "CIFA.h"
#include "ERRORS.h"
#include "BIAOGE.h"
#include "DAIMA.h"
#include "YUFA.h"
CPlCompiler::CPlCompiler(char *filename){
if (fp=fopen(fi
www.eeworm.com/read/277857/10598110
pl test3.pl
test2.pl
const a=45,b=27;
var x,y,g,m;
procedure swap;
var temp;
begin
temp:=x;
x:=y;
y:=temp
end;
procedure mod;
x:=x-x/y*y;
begin
x:=a;
y:=b;
call mod;
while x0 do
begin