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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,1ce0ce3b2db00698 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.238.65 with SMTP id vi1mr16986181pbc.7.1340723401563; Tue, 26 Jun 2012 08:10:01 -0700 (PDT) Path: l9ni22354pbj.0!nntp.google.com!news2.google.com!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail From: AdaMagica Newsgroups: comp.lang.ada Subject: Re: how to print an array range? Date: Tue, 26 Jun 2012 08:07:51 -0700 (PDT) Organization: http://groups.google.com Message-ID: <3206b429-1673-4f53-b1f2-b4776151dceb@googlegroups.com> References: <4fe9bf33$0$6566$9b4e6d93@newsspool4.arcor-online.net> NNTP-Posting-Host: 91.7.84.75 Mime-Version: 1.0 X-Trace: posting.google.com 1340723397 28796 127.0.0.1 (26 Jun 2012 15:09:57 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Tue, 26 Jun 2012 15:09:57 +0000 (UTC) Cc: nma@12000.org In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=91.7.84.75; posting-account=rmHyLAoAAADSQmMWJF0a_815Fdd96RDf User-Agent: G2/1.0 Content-Type: text/plain; charset=ISO-8859-1 Date: 2012-06-26T08:07:51-07:00 List-Id: G.3.1(4/2) type Real_Vector is array (Integer range <>) of Real'Base; type Real_Matrix is array (Integer range <>, Integer range <>)o f Real'Base; So without specifying a range, you get indices starting from Integer'First.