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,LOTS_OF_MONEY autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,58e0097f787e49d4 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-11-04 18:38:04 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!paloalto-snf1.gtei.net!chcgil2-snh1.gtei.net!chcgil2-snf1.gtei.net!news.gtei.net!news.binc.net!kilgallen From: Kilgallen@SpamCop.net (Larry Kilgallen) Newsgroups: comp.lang.ada Subject: Re: Naturals and discrete types Date: 4 Nov 2001 20:37:46 -0600 Organization: LJK Software Message-ID: References: <9rupv9$o5h$1@nh.pace.co.uk> NNTP-Posting-Host: eisner.encompasserve.org X-Trace: grandcanyon.binc.net 1004927869 30756 192.135.80.34 (5 Nov 2001 02:37:49 GMT) X-Complaints-To: abuse@binc.net NNTP-Posting-Date: Mon, 5 Nov 2001 02:37:49 +0000 (UTC) Xref: archiver1.google.com comp.lang.ada:15781 Date: 2001-11-04T20:37:46-06:00 List-Id: In article , "Clueless" writes: > I started counting from 0 instead of 1. I keep forgetting that this is > Ada and not C. Heh. Which you start with in Ada depends on whether you are using Natural or Positive. It is best to start with Natural'first or Positive'first if that is what you mean. Then many years later you (or your successor) will understand the purpose. Even better, when appropriate, is My_Array_Name'first.