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=0.2 required=5.0 tests=BAYES_00,INVALID_MSGID, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,453ed54f02292eea X-Google-Attributes: gid103376,public From: Jeff Carter Subject: Re: Simple Ada question Date: 2000/05/16 Message-ID: <3921BA49.F0C99F8C@acm.org>#1/1 X-Deja-AN: 624268950 Content-Transfer-Encoding: 7bit References: <8f8fm5$de5$1@news.uit.no> X-Accept-Language: en Content-Type: text/plain; charset=us-ascii X-Complaints-To: abuse@earthlink.net X-Trace: newsread1.prod.itd.earthlink.net 958515384 63.10.52.201 (Tue, 16 May 2000 15:16:24 PDT) Organization: EarthLink Inc. -- http://www.EarthLink.net MIME-Version: 1.0 Reply-To: jrcarter@acm.org NNTP-Posting-Date: Tue, 16 May 2000 15:16:24 PDT Newsgroups: comp.lang.ada Date: 2000-05-16T00:00:00+00:00 List-Id: You have two things named I. One is the variable declared on line 8 and never assigned a value, and the other is the for-loop counter. Since you never use the variable I, you can get rid of it. In addition, N is a constant and should be declared as such: N : constant := 50_000; -- Jeff Carter "I blow my nose on you." Monty Python & the Holy Grail