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=unavailable autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!mx02.eternal-september.org!.POSTED!not-for-mail From: David Thompson Newsgroups: comp.lang.ada Subject: Re: Building an encapsulated library that uses GNAT sockets under Windows Date: Mon, 09 May 2016 18:32:08 -0400 Organization: Poor Message-ID: <7tlsiblpj1kqpg3mc7fh8u64ujsa51mq8j@4ax.com> References: <68353b5d-94dc-4604-bdb1-00b48396ec1b@googlegroups.com> <33e880a1-df5f-450c-89e0-9b1d1a95e12f@googlegroups.com> <6c3cb21b-f729-4599-afb0-793c8b8fc2b8@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Injection-Info: mx02.eternal-september.org; posting-host="71434b2e91b85722f8cbe73463104c59"; logging-data="24245"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/KeRDGIvJ4+8WXdJ3THATG4rOAEyMCZys=" X-Newsreader: Forte Agent 3.3/32.846 Cancel-Lock: sha1:mxX/C6QOqaSJcdVNSkhR4n59OMo= Xref: news.eternal-september.org comp.lang.ada:30365 Date: 2016-05-09T18:32:08-04:00 List-Id: On Wed, 27 Apr 2016 22:59:01 -0700, "Jeffrey R. Carter" wrote: > On 04/27/2016 10:18 PM, J-P. Rosen wrote: > > > > loop > > loop > > {some code} > > if Found then > > goto Contine; > > end if; > > {some code} > > end loop; > > {some code} > > <> > > end loop; > > People ask for features like a continue statement because they're used to it in > some other language. I'm not aware of any language that has such a statement > that exits an inner loop and skips to the end of an outer loop. Fortran >= 90. PL/I at least IBM dialect since IDK when; I don't recall it there in the '70s when I used OS/360, but it is in a recent z/OS manual. perl -- if you accept perl as a programming language; personally I say it is but not a very good one and certainly not an example to follow. And I think LISP has it, but LISP has almost everything good AND bad.