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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,b971479ef2fe811a X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-10-21 19:49:52 PST Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!wn14feed!worldnet.att.net!204.127.198.203!attbi_feed3!attbi.com!sccrnsc03.POSTED!not-for-mail From: "Steve" Newsgroups: comp.lang.ada References: Subject: Re: Getting valid Integer values !! X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Message-ID: NNTP-Posting-Host: 12.211.13.75 X-Complaints-To: abuse@comcast.net X-Trace: sccrnsc03 1066790991 12.211.13.75 (Wed, 22 Oct 2003 02:49:51 GMT) NNTP-Posting-Date: Wed, 22 Oct 2003 02:49:51 GMT Organization: Comcast Online Date: Wed, 22 Oct 2003 02:49:51 GMT Xref: archiver1.google.com comp.lang.ada:1358 Date: 2003-10-22T02:49:51+00:00 List-Id: "CheGueVerra" wrote in message news:Jojlb.2002$VQ3.263951@news20.bellglobal.com... > > Also, for literals you should use '_' for such large numbers, e.g. > > 1_000_000 not 1000000 > > my subtype is declared as so > > subtype TelNumber is Integer range 1000000..9999999; > > now you want me to change this to > > subtype TelNumber is Integer range 1_000_000..9_999_999; > > exact ? if so why is it better ? > Which one is easier to read? Steve (The Duck) [snip] > > CheGueVerra > >