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,5a02c19a52ca6261 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2000-09-13 04:26:28 PST Message-ID: <39BF643F.11EF24A@amsjv.com> Date: Wed, 13 Sep 2000 12:25:52 +0100 From: Phil Slater X-Mailer: Mozilla 4.7 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: Hey I got the same assignment question! References: <39b4bd89$0$31789@echo-01.iinet.net.au> <39bd2540.9602808@news.cowan.edu.au> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit NNTP-Posting-Host: frmwkn5025.cr.frimley.gecm.com X-Trace: 13 Sep 2000 12:22:25 GMT, frmwkn5025.cr.frimley.gecm.com Path: supernews.google.com!sn-xit-02!sn-east!supernews.com!news-feed.riddles.org.uk!freenix!proxad.net!grolier!btnet-peer0!btnet-peer!btnet!newreader.ukcore.bt.net!pull.gecm.com!frmwkn5025.cr.frimley.gecm.com Xref: supernews.google.com comp.lang.ada:625 Date: 2000-09-13T12:25:52+01:00 List-Id: It's an enumeration type. I don't see the problem. Try this ------------------------------- with System, Text_Io; procedure Show_Name is package Name_Io is new Text_Io.Enumeration_Io(System.Name); begin Text_Io.Put_Line("Values of type System.Name are:"); for N in System.Name loop Name_Io.Put(N); end loop; end Show_Name; ------------------------------- or have I missed the point of your question? Phil Slater The Tiny Lobster wrote: > Hmmmm ECU Mount Lawely Comp Sci Methods?? :-) > > On Tue, 5 Sep 2000 17:42:19 -0700, "Damon Carter" > wrote: > > >The package System described in chapter 13 section 7 of the Ada95 language > >reference manual. This package defines a type called Name. Can anybody > >write an Ada95 program to display all the relevant attributes for Name. If > >so please help > > > >thanks > > Carter > > > > > > "We are monkeys, camping in the future" > > "I'm not interrupting you, I'm putting our conversation in full-duplex mode." - Antone Roundy