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=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,4227f66b399d97f5 X-Google-Attributes: gid103376,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII Path: g2news1.google.com!postnews.google.com!w24g2000prd.googlegroups.com!not-for-mail From: Anh Vo Newsgroups: comp.lang.ada Subject: Re: Help, asking for code to print out an enumerated type Date: Fri, 21 Nov 2008 13:19:06 -0800 (PST) Organization: http://groups.google.com Message-ID: References: <37008a4c-cdbf-42f4-b806-352501419ff6@n33g2000pri.googlegroups.com> <7f31b71b-f8d0-4721-8abe-aa5075172446@s9g2000prg.googlegroups.com> NNTP-Posting-Host: 149.32.224.34 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1227302346 17163 127.0.0.1 (21 Nov 2008 21:19:06 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Fri, 21 Nov 2008 21:19:06 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: w24g2000prd.googlegroups.com; posting-host=149.32.224.34; posting-account=Qh2kiQoAAADpCLlhT_KTYoGO8dU3n4I6 User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648),gzip(gfe),gzip(gfe) Xref: g2news1.google.com comp.lang.ada:2744 Date: 2008-11-21T13:19:06-08:00 List-Id: On Nov 21, 1:10=A0pm, "Jeffrey R. Carter" wrote: > Anh Vo wrote: > > > =A0 =A0I_Prefer_Ada : Boolean :=3D True; =A0 -- type Boolean is (True, = False); > > defined in Standard > > No, Boolean is defined as > > type Boolean is (False, True); > > ARM 3.5.3. Oops! you are right. However, for the purpose of printing out the enumerated values, the order does invalidate the code though. A. Vo