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 autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.36.135.71 with SMTP id f68mr3402346ite.40.1515069794767; Thu, 04 Jan 2018 04:43:14 -0800 (PST) X-Received: by 10.157.12.185 with SMTP id b54mr226283otb.1.1515069794614; Thu, 04 Jan 2018 04:43:14 -0800 (PST) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!feeder.eternal-september.org!border1.nntp.ams1.giganews.com!nntp.giganews.com!peer02.ams1!peer.ams1.xlned.com!news.xlned.com!peer02.am4!peer.am4.highwinds-media.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!i6no168231itb.0!news-out.google.com!b73ni654ita.0!nntp.google.com!i6no168229itb.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Thu, 4 Jan 2018 04:43:14 -0800 (PST) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=2a02:1206:45c6:8b20:1d81:189b:adc4:bcae; posting-account=gRqrnQkAAAAC_02ynnhqGk1VRQlve6ZG NNTP-Posting-Host: 2a02:1206:45c6:8b20:1d81:189b:adc4:bcae References: <81971548-23c9-4927-a6a8-6f0f1dba896b@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: stopping a loop iteration without exiting it From: gautier_niouzes@hotmail.com Injection-Date: Thu, 04 Jan 2018 12:43:14 +0000 Content-Type: text/plain; charset="UTF-8" X-Received-Body-CRC: 3263894306 X-Received-Bytes: 1716 Xref: reader02.eternal-september.org comp.lang.ada:49749 Date: 2018-01-04T04:43:14-08:00 List-Id: > loop > ... > goto Continue; > ... > <> > end loop; > > Randy. I was about to suggest for Ada 2020 a "goto loop end", but the "goto Continue" has the advantage of showing that the goto jumps *before* the loop's end, reminding that further iterations may occur.