代码搜索:如何学习 PL?
找到约 10,000 项符合「如何学习 PL?」的源代码
代码结果 10,000
www.eeworm.com/read/177370/9457844
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
#
www.eeworm.com/read/177308/9459698
pl0 test.pl0
var a,b;
procedure x;
var d,k;
procedure y;
var f,g;
begin
while
a#0 do
begin
f:=a;
a:=a-1;
end;
end;
www.eeworm.com/read/177296/9460231
java pl0.java
import java.io.*;
/**
*这个版本的 PL/0 编译器根据 C 语言的版本改写而成。两个版本在基本逻辑上是一致
*的,有些地方可能有所改动,例如getsym()和statement()两个函数,另外请注意C语言
*版本中的全局变量分散到构成编译器各个类中,为便于查找,保留了这些全局变量原来的名字。
*
*阅读过程中若有疑问请及时咨询 ...
www.eeworm.com/read/177012/9475130
html datapackageresources_pl.html
001 /* ===========================================================
002 * JFreeChar
www.eeworm.com/read/176730/9486310
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/176730/9486312
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/176730/9486315
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";