代码搜索:如何学习 PL?
找到约 10,000 项符合「如何学习 PL?」的源代码
代码结果 10,000
www.eeworm.com/read/163399/10162864
pl a_protocols_irc.pl
##!/usr/bin/perl
#
# Schpati - Pre-Alpha of AndyChat v3.xx
# MODULE: Protocols - IRC
#
# Started on Thursday, 17th of February, 2000 around 11.15pm
#
# 21st of July, 2002
# - (1.52am) Added irc__on_e
www.eeworm.com/read/163399/10162865
pl andy-ext.pl
#!/usr/bin/perl
#
# 8th of April, 2000
# - (2.20pm) Cleaned up variables a bit (more use of my())
#
sub datest {
my ($p1) = @_;
if ($p1 eq 0)
{
return 0;
}
elsif ((($p1 >= 4) && ($p1
www.eeworm.com/read/163381/10163238
pl0 test.pl0
/*这是一个测试程序*/
Program abc;
Integer x,y,z; /*变量声明*/
Real a,b;
Procedure ab(Var m,n:Integer; t:Real); /*过程*/
Begin
t:=n+m;
If m>n then /*条件语句*/
n:=m
els
www.eeworm.com/read/163337/10165807
pl gcd2.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 x#0 do
begin
www.eeworm.com/read/163337/10165820
pl recursion1.pl
CONST a = 10;
var b,c;
procedure p;
begin
read(b);
c:=c+1;
write(c);
if b#0 then
call p
end;
begin
c:=0;
call p
end.
www.eeworm.com/read/359078/10166713
pl cb_generator.pl
# | file: cb_generator.pl
# |
# | This SOPC Builder Generator program is provided by
# | the Component Builder application. It is copied
# | straight across and is data-driven from its command
# | lin
www.eeworm.com/read/358960/10174551
js calendar_pl.js
// ** I18N
// Calendar PL language
// Author: Dariusz Pietrzak,
// Author: Janusz Piwowarski,
// Encoding: utf-8
// Distributed under the same terms as the calend
www.eeworm.com/read/357589/10205285
pl0 test.pl0
/*这是一个测试程序*/
Program abc;
Integer x,y,z; /*变量声明*/
Real a,b;
Procedure ab(Var m,n:Integer; t:Real); /*过程*/
Begin
t:=n+m;
If m>n then /*条件语句*/
n:=m
els
www.eeworm.com/read/357508/10207638
pl convert_configure.pl
extproc perl -S -w
# The converted script is written to stdout, so run this script as
# convert_configure configure > configure.cmd
#
# When the converted script runs, it expects that /tmp dir is
www.eeworm.com/read/426337/10259396
pl regression-test.pl
#!/bin/env perl
# regression-test.pl: tests different versions of x264
# by Alex Izvorski & Loren Merrit 2007
# GPL
$^W=1;
use Getopt::Long;
use File::Path;
use File::Copy;
use File::Basename;
# p