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,FREEMAIL_FROM, LOTS_OF_MONEY autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 2002:a05:620a:1228:: with SMTP id v8mr14062292qkj.357.1565278845894; Thu, 08 Aug 2019 08:40:45 -0700 (PDT) X-Received: by 2002:a05:6830:18a:: with SMTP id q10mr13950025ota.114.1565278845771; Thu, 08 Aug 2019 08:40:45 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!feeder.eternal-september.org!news.gegeweb.eu!gegeweb.org!fdn.fr!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!b26no698639qtq.0!news-out.google.com!y1ni217qtn.0!nntp.google.com!b26no698630qtq.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Thu, 8 Aug 2019 08:40:45 -0700 (PDT) In-Reply-To: <1992Dec4.141816.1@happy.colorado.edu> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=202.67.103.232; posting-account=S_MdrwoAAAD7T2pxG2e393dk6y0tc0Le NNTP-Posting-Host: 202.67.103.232 References: <1992Dec4.141816.1@happy.colorado.edu> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <86986725-f34e-46d7-9efc-d15d94379048@googlegroups.com> Subject: Re: Marina 1 / FORTRAN bug From: robin.vowels@gmail.com Injection-Date: Thu, 08 Aug 2019 15:40:45 +0000 Content-Type: text/plain; charset="UTF-8" Xref: reader01.eternal-september.org comp.lang.ada:57011 Date: 2019-08-08T08:40:45-07:00 List-Id: On Saturday, December 5, 1992 at 7:18:16 AM UTC+11, srhe...@happy.colorado.edu wrote: > I heard a rumer about a multi-million (or multi-billion) dollar satellite going > astray because some one left a comma out of a FORTRAN DO loop and it was still > syntactically legal. Can anybody give me a reference on this? A google search produced this first try: This has come up in a couple of threads in the last month or two, so I finally got around to looking it up. The famous FORTRAN punctuation error occured on Mariner 1 in 1962. Here is a description of the error: "There is a useful lesson to be learned from the failure of one of the earliest planetary probes launched by NASA. The cause of the failure was eventually traced to a statement in its control software similar to this: DO 15 I = 1.100 when what should have been written was: DO 15 I = 1,100 but somehow a dot had replaced the comma. Because Fortran ignores spaces, this was seen by the compiler as: DO15I = 1.100 which is a perfectly valid assignment to a variable called DO15I and not at all what was intended." Information found here: http://www.star.le.ac.uk/~cgp/prof77.html#tth_sEc1.3