From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.5-pre1 (2020-06-20) on ip-172-31-74-118.ec2.internal X-Spam-Level: X-Spam-Status: No, score=-1.9 required=3.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.5-pre1 Date: 14 Jan 92 22:16:58 GMT From: cochiti.lanl.gov!jlg@lanl.gov (Jim Giles) Subject: Re: Ada statement Message-ID: <1992Jan14.221658.7468@beta.lanl.gov> List-Id: In article <1992Jan14.204928.21571@cbnewsl.cb.att.com>, willett@cbnewsl.cb.att. com (david.c.willett) writes: |> [...] |> You can use the NULL statement as one alternative of a conditonal |> accept, or as an alternative in a conditonal. In both cases, it |> would be analogous to the FORTRAN or C "continue". The Fortran continue and the C continue do completely different things. In Fortran, continue does nothing and is a convenient place to hang a statement label. In C, a continue statement causes the rest of the innermost loop to be skipped and for the next pass of the loop to begin (ie. the "cycle" statement in some languages). The C feature which resembles a Fortran continue is ";" - the NULL statement - same as Ada. J. Giles