代码搜索:如何学习 PL?
找到约 10,000 项符合「如何学习 PL?」的源代码
代码结果 10,000
www.eeworm.com/read/283196/9036502
pl phone1.pl
#!/usr/bin/perl -w
%phonebook = ( "Bob" => "247305", "Phil" => "205832", "Sara" => "226010" );
# We created our hash just like a list, but used the => operator
# (which is equivalent to a comma in m
www.eeworm.com/read/283196/9036504
pl cd_db.pl
#! /usr/bin/perl -w
# Perl translation of chapter 2's shell CD database
# Copyright (C) 1999 Wrox Press.
# This program is free software; you can redistribute it and/or modify
# it under the terms o
www.eeworm.com/read/283196/9036506
pl phone2.pl
#!/usr/bin/perl -w
%phonebook = ( "Bob" => "247305", "Phil" => "205832", "Sara" => "226010" );
print "Sara's phone number is $phonebook{Sara}\n";
print "Bob's phone number is $phonebook{Bob}\n";
www.eeworm.com/read/283196/9036510
pl hello2.pl
#!/usr/bin/perl -w
# hello2.pl
$message = "Hello, World\n";
print $message;
www.eeworm.com/read/283196/9036512
pl hello3.pl
#!/usr/bin/perl -w
# hello1.pl
@message = ("\n", " ", "World", "Hello,");
print $message[3], $message[1], $message[2], $message[0];
www.eeworm.com/read/283196/9036513
pl hello1.pl
#!/usr/bin/perl -w
# hello1.pl
print "Hello World\n";
www.eeworm.com/read/185096/9057213
h pl0.h
#include
#define NRW 11 // number of reserved words
#define TXMAX 500 // length of identifier table
#define MAXNUMLEN 14 // maximum number of digits in numbers
www.eeworm.com/read/185096/9057214
exe pl01.exe
www.eeworm.com/read/185096/9057218
tds pl01.tds
www.eeworm.com/read/185096/9057221
pas pl0.pas
PROGRAM PL0(INPUT,OUTPUT,INPUT1,OUTPUT1);
(*PL0 COMPILER WITH CODE GENERATION*)
LABEL
99;
CONST
AL=10; (*LENGTH OF IDENTIFIERS*)
NORW=14; (*# OF RESERVED WORDS*)
TXMAX=100; (*LE