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-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,8d472879e3f609e0 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-06-02 18:14:28 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!sn-xit-03!sn-xit-01!sn-post-02!sn-post-01!supernews.com!corp.supernews.com!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: Case sensitivity (was Re: no title) Date: Mon, 2 Jun 2003 20:15:38 -0500 Organization: Posted via Supernews, http://www.supernews.com Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Newsreader: Microsoft Outlook Express 4.72.3612.1700 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3719.2500 X-Complaints-To: abuse@supernews.com Xref: archiver1.google.com comp.lang.ada:38416 Date: 2003-06-02T20:15:38-05:00 List-Id: Preben Randhol wrote in message ... >Sergey Koshcheyev wrote: >> I don't want complete freedom and anarchy, but just to be able to use >> capitalized identifiers which collide with reserved words, and are thus >> unusable. > >This means you have then defined all reserved words as lowercase. Right. And that would be very bad for existing code. Our Ada 83 coding standard used Title case reserved words: Procedure Foo Is MAX : Constant Integer := 10; Begin If Expr > MAX Then ... End Foo; The entire Janus/Ada compiler is formatted like this. I'm pretty sure that I'd have an opinion on a language change which made all of that code illegal. :-) :-) Randy.