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,3957a46660bc0588 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-10-13 11:50:04 PST Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!newsfeed.stueberl.de!newsr1.ipcore.viaginterkom.de!btnet-peer1!btnet-feed5!btnet!news.btopenworld.com!not-for-mail From: "Martin Dowie" Newsgroups: comp.lang.ada Subject: Re: strings and multidimensional arrays Date: Mon, 13 Oct 2003 18:49:03 +0000 (UTC) Organization: BT Openworld Message-ID: References: <3F88D320.80706@chartermi.net> <3F88E586.5060809@chartermi.net> <3F89621F.7070406@comcast.net> <3F89EB77.3030007@comcast.net> <3F8ADB3D.5010000@comcast.net> NNTP-Posting-Host: host81-129-31-54.in-addr.btopenworld.com X-Trace: sparta.btinternet.com 1066070943 14026 81.129.31.54 (13 Oct 2003 18:49:03 GMT) X-Complaints-To: news-complaints@lists.btinternet.com NNTP-Posting-Date: Mon, 13 Oct 2003 18:49:03 +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:783 Date: 2003-10-13T18:49:03+00:00 List-Id: "Robert I. Eachus" wrote in message news:3F8ADB3D.5010000@comcast.net... > type Unconstrained_Record (D : Disc := One) is record Isn't this the key line here? The default ("One") allows you to change it late (as often as you like). If you didn't have this, then you would have to provide a value at declaration and it would be 'fixed' for the life of the object.