From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=MAILING_LIST_MULTI autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 28248 invoked from network); 25 Nov 2021 07:24:59 -0000 Received: from minnie.tuhs.org (45.79.103.53) by inbox.vuxu.org with ESMTPUTF8; 25 Nov 2021 07:24:59 -0000 Received: by minnie.tuhs.org (Postfix, from userid 112) id 0AEE39C723; Thu, 25 Nov 2021 17:24:55 +1000 (AEST) Received: from minnie.tuhs.org (localhost [127.0.0.1]) by minnie.tuhs.org (Postfix) with ESMTP id CBFEF93D42; Thu, 25 Nov 2021 17:22:17 +1000 (AEST) Received: by minnie.tuhs.org (Postfix, from userid 112) id 3428293D42; Thu, 25 Nov 2021 17:22:15 +1000 (AEST) Received: from freefriends.org (freefriends.org [96.88.95.60]) by minnie.tuhs.org (Postfix) with ESMTPS id 7E3AE93D1B for ; Thu, 25 Nov 2021 17:22:14 +1000 (AEST) X-Envelope-From: arnold@skeeve.com Received: from freefriends.org (freefriends.org [96.88.95.60]) by freefriends.org (8.14.7/8.14.7) with ESMTP id 1AP7M5DZ022647 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 25 Nov 2021 00:22:06 -0700 Received: (from arnold@localhost) by freefriends.org (8.14.7/8.14.7/Submit) id 1AP7M2Tu022646; Thu, 25 Nov 2021 00:22:02 -0700 From: arnold@skeeve.com Message-Id: <202111250722.1AP7M2Tu022646@freefriends.org> X-Authentication-Warning: frenzy.freefriends.org: arnold set sender to arnold@skeeve.com using -f Date: Thu, 25 Nov 2021 00:22:02 -0700 To: thomas.paulsen@firemail.de, rich.salz@gmail.com, arnold@skeeve.com References: <202111242013.1AOKDYNd007770@freefriends.org> In-Reply-To: <202111242013.1AOKDYNd007770@freefriends.org> User-Agent: Heirloom mailx 12.5 7/5/10 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: [TUHS] Book Recommendation X-BeenThere: tuhs@minnie.tuhs.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: The Unix Heritage Society mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: tuhs@minnie.tuhs.org Errors-To: tuhs-bounces@minnie.tuhs.org Sender: "TUHS" What I meant to write here, before my ssh connection dropped, was that FORTRAN also did not reserve keywords. Arnold arnold@skeeve.com wrote: > Richard Salz wrote: > > > I asked my pal Barry Shein, who many of you know, if he had his PL/1 syntax > > horror lying around, and he did. He said: "this was tested on the Iron > > Spring Software PL/1 compiler running on openSuSe Linux ( > > http://www.iron-spring.com/)" > > > > IBM still uses PL/1. Remember, the main definition of "legacy" is > > "revenue-producing." > > > > TRY:PROC OPTIONS(MAIN); > > DCL (IF,THEN,ELSE) FIXED BINARY (31); > > > > IF = 1; > > THEN = 2; > > ELSE = 3; > > > > IF IF = THEN THEN THEN = IF ; ELSE ELSE = THEN; > > > > END TRY;