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=3.4 required=5.0 tests=BAYES_50,INVALID_DATE, MSGID_SHORT,REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 Path: utzoo!utgpu!jarvis.csri.toronto.edu!cs.utexas.edu!tut.cis.ohio-state.edu!ucbvax!bloom-beacon!mcgill-vision!quiche!opus!clement From: clement@opus.cs.mcgill.ca (Clement Pellerin) Newsgroups: comp.lang.ada Subject: Re: Reasons for keeping Ada Message-ID: <1895@opus.cs.mcgill.ca> Date: 21 Feb 90 00:40:32 GMT References: <19409@grebyn.com> <6175@ae.sei.cmu.edu> <5417@crdgw1.crd.ge.com> Reply-To: clement@opus.UUCP (Clement Pellerin) Organization: SOCS, McGill University, Montreal, Canada List-Id: In article <5417@crdgw1.crd.ge.com> kassover@control.crd.ge.com (David Kassover) writes: > DO 100 I = 1.100 > ... > 100 CONTINUE >This compiled, and the loop merrily executed only once. because Fortran discards spaces. The do statement is in fact an assignment statement. You can check it out by printing the value of DO100I before line 100. No wonder Fortran is not context free! -- news