<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="zh">
	<id>https://arolstar52-zhtest.hf.space/index.php?action=history&amp;feed=atom&amp;title=PL%2FI</id>
	<title>PL/I - 版本历史</title>
	<link rel="self" type="application/atom+xml" href="https://arolstar52-zhtest.hf.space/index.php?action=history&amp;feed=atom&amp;title=PL%2FI"/>
	<link rel="alternate" type="text/html" href="https://arolstar52-zhtest.hf.space/index.php?title=PL/I&amp;action=history"/>
	<updated>2026-07-17T08:05:53Z</updated>
	<subtitle>在这个wiki上该页的修订历史</subtitle>
	<generator>MediaWiki 1.43.9</generator>
	<entry>
		<id>https://arolstar52-zhtest.hf.space/index.php?title=PL/I&amp;diff=73417&amp;oldid=prev</id>
		<title>imported&gt;ExultantEditor 来自 2025年12月26日 (五) 15:34</title>
		<link rel="alternate" type="text/html" href="https://arolstar52-zhtest.hf.space/index.php?title=PL/I&amp;diff=73417&amp;oldid=prev"/>
		<updated>2025-12-26T15:34:22Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新页面&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{Infobox programming language&lt;br /&gt;
| name                   = PL/I&lt;br /&gt;
| logo                   =&lt;br /&gt;
| paradigm               = [[过程式编程|过程式]], [[指令式编程|指令式]], [[结构化编程|结构化]]&lt;br /&gt;
| year                   = {{start date and age|1964}}&lt;br /&gt;
| designer               = [[IBM]]与{{tsl|en|SHARE (computing)|SHARE (计算)|SHARE}}语言发展委员会&lt;br /&gt;
| developer              = [[IBM]]&lt;br /&gt;
| latest release version = IBM Enterprise PL/I for z/OS 5.3&amp;lt;ref&amp;gt;{{cite web |last1= IBM Corporation |title= IBM Enterprise PL/I for z/OS, V5.3 |url= https://www-01.ibm.com/common/ssi/ShowDoc.wss?docURL=/common/ssi/rep_ca/2/899/ENUSLP19-0482/index.html&amp;amp;request_locale=en |website= IBM |access-date= October 1, 2019 |archive-date= 2020-07-28 |archive-url= https://web.archive.org/web/20200728071738/https://www-01.ibm.com/common/ssi/ShowDoc.wss?docURL=%2Fcommon%2Fssi%2Frep_ca%2F2%2F899%2FENUSLP19-0482%2Findex.html&amp;amp;request_locale=en }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| latest release date = {{start date and age|September 2019}}&lt;br /&gt;
| typing                 =&lt;br /&gt;
| implementations        =&lt;br /&gt;
| dialects               = {{tsl|en|PL/M|}}, {{tsl|en|XPL|}}, {{tsl|en|PL/P|}}, {{tsl|en|PL/C|}}, {{tsl|en|IBM PL/S||PL/S}}, {{tsl|en|PL/AS|}}, {{tsl|en|PL/X|}}, {{le|PL/8}}, EPL&amp;lt;ref name=&amp;quot;MulticsPL1&amp;quot;&amp;gt;{{cite web|url=http://www.multicians.org/pl1-raf.html|title=The Multics PL/1 Compiler|author=R. A. Frieburghouse|website=Multicians.org|access-date=2023-01-26|archive-date=2023-02-23|archive-url=https://web.archive.org/web/20230223033409/https://multicians.org/pl1-raf.html|dead-url=no}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
| influenced_by          = [[COBOL]], [[Fortran]], [[ALGOL]]&lt;br /&gt;
| influenced             = {{tsl|en|SP/k|}}, [[B语言]], [[REXX]], {{tsl|en|AS/400 Control Language|AS/400控制语言}}&lt;br /&gt;
| wikibooks              = PL/I&lt;br /&gt;
}}&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;PL/I&amp;#039;&amp;#039;&amp;#039;（{{IPAc-en|p|iː|_|ɛ|l|_|w|ʌ|n}}），源自&amp;#039;&amp;#039;&amp;#039;編程語言一号&amp;#039;&amp;#039;&amp;#039;（{{lang|en|Programming Language One}}）的縮寫，一種[[过程式编程|过程式]]、[[指令式編程|指令式]][[程式語言]]。由[[IBM]]公司在1960年代发明的第三代高级编程语言，用于IBM的{{tsl|en|MVS|}}、或[[迪吉多]]的[[VAX/VMS]]等[[操作系统]]中。&lt;br /&gt;
在系统软件，图像，仿真，文字处理，网络，商业软件等领域均可应用。&lt;br /&gt;
&lt;br /&gt;
==样例代码==&lt;br /&gt;
&lt;br /&gt;
===Hello world程序===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;rexx&amp;quot;&amp;gt;&lt;br /&gt;
Hello2: proc options(main);&lt;br /&gt;
    put list (&amp;#039;Hello, world!&amp;#039;);&lt;br /&gt;
end Hello2;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===查找字符串===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;rexx&amp;quot;&amp;gt;&lt;br /&gt;
/* Read in a line, which contains a string,&lt;br /&gt;
/* and then print every subsequent line that contains that string. */&lt;br /&gt;
&lt;br /&gt;
find_strings: procedure options (main);&lt;br /&gt;
    declare pattern character (100) varying;&lt;br /&gt;
    declare line character (100) varying;&lt;br /&gt;
    declare line_no fixed binary;&lt;br /&gt;
&lt;br /&gt;
    on endfile (sysin) stop;&lt;br /&gt;
&lt;br /&gt;
    get edit (pattern) (L);&lt;br /&gt;
    line_no = 1;&lt;br /&gt;
    do forever;&lt;br /&gt;
        get edit (line) (L);&lt;br /&gt;
        if index(line, pattern) &amp;gt; 0 then&lt;br /&gt;
            put skip list (line_no, line);&lt;br /&gt;
        line_no = line_no + 1;&lt;br /&gt;
    end;&lt;br /&gt;
&lt;br /&gt;
end find_strings;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==引用==&lt;br /&gt;
{{reflist}}&lt;br /&gt;
&lt;br /&gt;
== 外部連結 ==&lt;br /&gt;
{{wikibooks}}&lt;br /&gt;
* [https://web.archive.org/web/20021206103323/http://www.kednos.com/ Kednos PL/I] for [[Hewlett-Packard|HP]] [[OpenVMS]] [[VAX]] and [[DEC Alpha|Alpha]]  &lt;br /&gt;
* [https://web.archive.org/web/20080622220338/http://www-306.ibm.com/software/awdtools/pli/ IBM PL/I] for [[IBM大型主機]]，{{tsl|en|Linux on zSeries|}} and [[Microsoft Windows|Windows]]&lt;br /&gt;
* [https://web.archive.org/web/20080304153614/http://www.users.bigpond.com/robin_v/resource.htm PL/I Resources]&lt;br /&gt;
* [https://archive.today/20060311035331/http://home.nycap.rr.com/pflass/pli.htm PL/I home]&lt;br /&gt;
* [https://web.archive.org/web/20080222150421/http://www.users.bigpond.com/robin_v/pli-n9.htm PL/I newsletter] April 2006&lt;br /&gt;
* [http://www.uni-muenster.de/ZIV/Mitarbeiter/EberhardSturm/PL1andC.html/ Power vs. Adventure - PL/I and C]{{Wayback|url=http://www.uni-muenster.de/ZIV/Mitarbeiter/EberhardSturm/PL1andC.html/ |date=20080518164859 }} A side-by-side comparison of PL/I and [[C语言|C]]。&lt;br /&gt;
* [http://pl1gcc.sourceforge.net/ PL/I for GCC]{{Wayback|url=http://pl1gcc.sourceforge.net/ |date=20080218073621 }} The pl1gcc project is an attempt to create a native PL/I compiler using the GNU Compiler Collection.&lt;br /&gt;
* [https://archive.today/20060311035711/http://home.nycap.rr.com/pflass/relate.htm Languages Related to PL/I]&lt;br /&gt;
* [https://web.archive.org/web/20071228062555/http://www.kednos.com/docs.html Kednos PL/I for OpenVMS Compiler Documentation]&lt;br /&gt;
* [http://www.cs.vu.nl/grammars/browsable/os-pli-v2r3/ PL/I grammar]{{Wayback|url=http://www.cs.vu.nl/grammars/browsable/os-pli-v2r3/ |date=20080520051643 }}&lt;br /&gt;
&lt;br /&gt;
{{程序设计语言|PL/I}}&lt;br /&gt;
&lt;br /&gt;
[[Category:程序设计语言]]&lt;/div&gt;</summary>
		<author><name>imported&gt;ExultantEditor</name></author>
	</entry>
</feed>