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,5430b81ad265fc75 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-02-13 20:28:28 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!arclight.uoregon.edu!wn13feed!worldnet.att.net!204.127.198.203!attbi_feed3!attbi.com!sccrnsc01.POSTED!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: Array Of Constant Strings? References: X-Newsreader: Tom's custom newsreader Message-ID: NNTP-Posting-Host: 12.234.13.56 X-Complaints-To: abuse@attbi.com X-Trace: sccrnsc01 1045196907 12.234.13.56 (Fri, 14 Feb 2003 04:28:27 GMT) NNTP-Posting-Date: Fri, 14 Feb 2003 04:28:27 GMT Organization: AT&T Broadband Date: Fri, 14 Feb 2003 04:28:27 GMT Xref: archiver1.google.com comp.lang.ada:34086 Date: 2003-02-14T04:28:27+00:00 List-Id: > It won't let me just say: > > Name_List : constant array(1..26) of String := > ("Anthony", "Barbara", "Claudia", "Deborah" "Elliott", > .... and so on. > > because, as it informs me, > > unconstrained element type in array declaration But it *will* let you say: subtype Name_Strings is String(1 .. 7); Name_List : constant array(1 .. 26) of Name_Strings := ("Anthony", "Barbara", "Claudia", "Deborah", "Elliott", etc.