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,c733905936c6b6b0 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.204.150.90 with SMTP id x26mr1423783bkv.6.1334633086195; Mon, 16 Apr 2012 20:24:46 -0700 (PDT) MIME-Version: 1.0 Path: h15ni132390bkw.0!nntp.google.com!news1.google.com!goblin1!goblin2!goblin.stu.neva.ru!newsfeed.x-privat.org!news.jacob-sparre.dk!munin.jacob-sparre.dk!pnx.dk!.POSTED!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: [OT] interesting reason why a language is considered good Date: Mon, 16 Apr 2012 22:24:41 -0500 Organization: Jacob Sparre Andersen Research & Innovation Message-ID: References: <8603135.951.1334573001928.JavaMail.geo-discussion-forums@vbbdy9> <4f8c06f5$0$7617$9b4e6d93@newsspool1.arcor-online.net> <14veb9cpamoda.ck9fbsd5m9m$.dlg@40tude.net> <4f8c3431$0$7627$9b4e6d93@newsspool1.arcor-online.net> NNTP-Posting-Host: static-69-95-181-76.mad.choiceone.net X-Trace: munin.nbi.dk 1334633085 2763 69.95.181.76 (17 Apr 2012 03:24:45 GMT) X-Complaints-To: news@jacob-sparre.dk NNTP-Posting-Date: Tue, 17 Apr 2012 03:24:45 +0000 (UTC) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.5931 X-RFC2646: Format=Flowed; Original X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 Date: 2012-04-16T22:24:41-05:00 List-Id: "Dmitry A. Kazakov" wrote in message news:szik5e8e6n4m$.dgyqh41b6k6b$.dlg@40tude.net... ... >> Amado-Alves claimed that "when" and "others" show that the number >> of reserved words in Ada is too large, because they are good >> candidates for identifiers. > > Surely "when" and "at" are prefect names for a formal parameter of the > type > Time. I was going to say that; I tend to write such parameters from time-to-time, and after the compiler complains, I change them to something wordier. But that's not necessarily helpful, as formal parameter names can be (and ought to be) used in calls: Open_Gates (To_Percent => 0.75, When => Clock + 3600.00); (Not to mention us compiler-writers, which want to have enumerations named "Array" and "Record" and "Access" for describing kinds of types.) Randy.