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 08:49:01 PST Path: archiver1.google.com!news1.google.com!sn-xit-02!sn-xit-06!sn-xit-08!supernews.com!freenix!usenet-fr.net!proxad.net!peer1.news.newnet.co.uk!peer1.news.newnet.co.uk!nntp.theplanet.net!inewsm1.nntp.theplanet.net!newspeer.lavaseals.co.uk!zen.net.uk!btnet-peer1!btnet-peer0!btnet-feed5!btnet!news.btopenworld.com!not-for-mail From: "Martin Dowie" Newsgroups: comp.lang.ada Subject: Re: Case sensitivity (was Re: no title) Date: Mon, 2 Jun 2003 15:48:12 +0000 (UTC) Organization: BT Openworld Message-ID: References: NNTP-Posting-Host: host213-123-124-189.in-addr.btopenworld.com X-Trace: hercules.btinternet.com 1054568892 9468 213.123.124.189 (2 Jun 2003 15:48:12 GMT) X-Complaints-To: news-complaints@lists.btinternet.com NNTP-Posting-Date: Mon, 2 Jun 2003 15:48:12 +0000 (UTC) X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 X-MSMail-Priority: Normal X-Priority: 3 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Xref: archiver1.google.com comp.lang.ada:38372 Date: 2003-06-02T15:48:12+00:00 List-Id: "Sergey Koshcheyev" wrote in message news:bbf9kl$7kt$1@ns.felk.cvut.cz... > > "Preben Randhol" wrote in message > news:slrnbdm1i7.1k5.randhol+abuse@kiuk0152.chembio.ntnu.no... > > Case SenSitIvitY is a bAD ThiNg IMHO. It reduces readability as you need > > to be sure you spelt it correctly according to the definition. One could > > in fact have a GetString and getstring and Getstring and > > getString procedure. > > IMHO, case sensitivity would help ensure consistency of names, so you don't > have Text_IO, Text_Io, text_io and TEXT_IO in the same program, and would > also enable using common words like In, Out, For, At for identifiers. Things > like GetString vs. getstring and others are better handled by using some > coding standard and naming convention, in my opinion. Given that it's > standard in Ada to use Identifiers_Like_This, I think case sensitivity While you will find lots of code that does conform to the "new" Ada95 style, you will also find loads of guys still using the old Ada83 style. If you want to ensure that everyones code is consistent use a pretty-printer and/or peer reviews (preferable a PP). No case sensitively please...