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=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,459feef56669b92d X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-11-03 14:12:48 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: dmytrylavrov@fsmail.net (Dmytry Lavrov) Newsgroups: comp.lang.ada Subject: Re: "continue/next" for "loop" Date: 3 Nov 2003 14:12:48 -0800 Organization: http://groups.google.com Message-ID: <49cbf610.0311031412.22780ab7@posting.google.com> References: NNTP-Posting-Host: 213.248.15.61 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1067897568 15650 127.0.0.1 (3 Nov 2003 22:12:48 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Mon, 3 Nov 2003 22:12:48 +0000 (UTC) Xref: archiver1.google.com comp.lang.ada:2014 Date: 2003-11-03T14:12:48-08:00 List-Id: I have example where gotos are natural: kind of bresentham line drawing routine(coded in assembler) 2 not nested loops that shares some operators,and it was natural to enter loop different ways depend to initial situation. Something like initially_find_where_to_enter; Loop1 start loop2 start shared_statements loop1end loop2end And also parsers generated by lex or maybe other tools are using gotos because it's far more natural. Regards, Dmytry Lavrov.