From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,8002154d2966e1a1 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-11-05 19:13:59 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!canoe.uoregon.edu!logbridge.uoregon.edu!feeder.via.net!nntp1.phx1.gblx.net!nntp.gblx.net!nntp.gblx.net!newsfeed.news2me.com!newsfeed2.earthlink.net!newsfeed.earthlink.net!stamper.news.pas.earthlink.net!stamper.news.atl.earthlink.net!harp.news.atl.earthlink.net!beastie.ix.netcom.com!nobody From: Dennis Lee Bieber Newsgroups: comp.lang.ada Subject: Re: Local vs global variables in ADA Date: Tue, 05 Nov 2002 18:19:04 -0800 Organization: >> Leaf-Eating Penguins? << Message-ID: References: <5Ldx9.3695$151.38236@weber.videotron.net> <3DC8585E.5050003@otelco.net> NNTP-Posting-Host: a5.f7.d0.c6 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit X-Server-Date: 6 Nov 2002 03:18:36 GMT User-Agent: KNode/0.6.1 X-noarchive: yes Xref: archiver1.google.com comp.lang.ada:30417 Date: 2002-11-06T03:18:36+00:00 List-Id: Larry Hazel fed this fish to the penguins on Tuesday 05 November 2002 03:46 pm: >> > If I remember correctly, the Fortran compiler for the SDS/Xerox Sigma > computers used: > > REPEAT > Statements > WHILE Condition > > or UNTIL Condition > Ooooh... My reference manuals are in storage so I can't check... Of course, this was the same compiler that defined a "GLOBAL vars" statement... Which effectively translated: global x, y, m, n, a into common /x/ x common /y/ y common /m/ m common /n/ n common /a/ a IE, /each/ variable named generated a named common block containing only that variable, and the common block name matched the variable name. -- > ============================================================== < > wlfraed@ix.netcom.com | Wulfraed Dennis Lee Bieber KD6MOG < > wulfraed@dm.net | Bestiaria Support Staff < > ============================================================== < > Bestiaria Home Page: http://www.beastie.dm.net/ < > Home Page: http://www.dm.net/~wulfraed/ <