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,82a249cbe0a8d4bc X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-05-13 03:46:03 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!kibo.news.demon.net!demon!newspeer1-gui.server.ntli.net!ntli.net!news11-gui.server.ntli.net.POSTED!not-for-mail From: "chris.danx" Newsgroups: comp.lang.ada References: Subject: Re: arrays.. X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2600.0000 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Message-ID: Date: Mon, 13 May 2002 11:45:24 +0100 NNTP-Posting-Host: 62.255.157.109 X-Complaints-To: abuse@ntlworld.com X-Trace: news11-gui.server.ntli.net 1021286762 62.255.157.109 (Mon, 13 May 2002 11:46:02 BST) NNTP-Posting-Date: Mon, 13 May 2002 11:46:02 BST Organization: ntl Cablemodem News Service Xref: archiver1.google.com comp.lang.ada:23946 Date: 2002-05-13T11:45:24+01:00 List-Id: "Beard, Frank [Contractor]" wrote in message news:mailman.1021249922.3094.comp.lang.ada@ada.eu.org... > Arrays of characters are called strings: > > word : string (1..50); -- anonymous declaration > > or > > type Word_Type is string (1..50); ^^^ this is incorrect (it won't compile). Should either be subtype word_type is string (1..50); or type word_type is new string (1..50); Chris