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-04 10:05:35 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!headwall.stanford.edu!newshub.sdsu.edu!elnk-nf2-pas!newsfeed.earthlink.net!wn14feed!worldnet.att.net!4.24.21.153!chcgil2-snh1.gtei.net!news.bbnplanet.com!chcgil2-snf1.gtei.net!news.gtei.net!news.binc.net!kilgallen From: Kilgallen@SpamCop.net (Larry Kilgallen) Newsgroups: comp.lang.ada Subject: Re: Case sensitivity (was Re: no title) Date: 4 Jun 2003 12:05:31 -0500 Organization: Berbee Information Networks Corporation Message-ID: References: <20619edc.0306021018.6ee4dd09@posting.google.com> <1054649187.11497@master.nyc.kbcfp.com> <20619edc.0306031034.6a2f5f25@posting.google.com> <1054666439.685312@master.nyc.kbcfp.com> <1054735867.264510@master.nyc.kbcfp.com> Organization: LJK Software NNTP-Posting-Host: eisner.encompasserve.org X-Trace: grandcanyon.binc.net 1054746279 26788 192.135.80.34 (4 Jun 2003 17:04:39 GMT) X-Complaints-To: abuse@binc.net NNTP-Posting-Date: Wed, 4 Jun 2003 17:04:39 +0000 (UTC) Xref: archiver1.google.com comp.lang.ada:38623 Date: 2003-06-04T12:05:31-05:00 List-Id: In article , Hyman Rosen writes: > How does case sensitivity increase bugs? In a case > sensitive language, if you use one case and the > name was declared with a different case, your code > will not compile. If two names differ only in case, > and, say, one names a type and the other an object, > the code will again fail to compile if you switch > them. But if they do _not_ have that difference, the code might compile. declare Index : integer := 27; begin for index in my_array'range loop if my_array ( Index ) > current_maximum then current_maximum := my_array ( index ); Index := index; end if; end loop; end;