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=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,81bb2ce65a3240c3 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.197.193 with SMTP id iw1mr4567173pbc.0.1335407786620; Wed, 25 Apr 2012 19:36:26 -0700 (PDT) MIME-Version: 1.0 Path: r9ni99068pbh.0!nntp.google.com!news2.google.com!goblin1!goblin.stu.neva.ru!nuzba.szn.dk!news.jacob-sparre.dk!munin.jacob-sparre.dk!pnx.dk!.POSTED!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: What would you like in Ada202X? Date: Wed, 25 Apr 2012 21:36:18 -0500 Organization: Jacob Sparre Andersen Research & Innovation Message-ID: References: <17572718.3572.1335384748259.JavaMail.geo-discussion-forums@vbbfk16> <2067477840357081057.394792martin-re.mo.ve.thedowies.com@news.btinternet.com> <4f98781c$0$6557$9b4e6d93@newsspool4.arcor-online.net> NNTP-Posting-Host: static-69-95-181-76.mad.choiceone.net X-Trace: munin.nbi.dk 1335407784 629 69.95.181.76 (26 Apr 2012 02:36:24 GMT) X-Complaints-To: news@jacob-sparre.dk NNTP-Posting-Date: Thu, 26 Apr 2012 02:36:24 +0000 (UTC) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.5931 X-RFC2646: Format=Flowed; Response X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 Date: 2012-04-25T21:36:18-05:00 List-Id: "Georg Bauhaus" wrote in message news:4f98781c$0$6557$9b4e6d93@newsspool4.arcor-online.net... ... > Also, imagine a few line breaks that Perl programmers would write. > They have return [expression] [if expression] and write > > $foo = something($bar); > return $foo + frobnicte($bar + $something) # No ';' here! > if $bar > 0; > continuing(); > > This all becomes very dependent on single ';'s. You can see it when you > feed the above future Ada text to Ada compilers :-) Ada requires parens around conditional expressions for this very reason. You still have get into circumstances where the compiler can't tell if a paren or ; is missing, but it is never legal without one of them. Randy.