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.3 required=5.0 tests=BAYES_00,FREEMAIL_FROM, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,386228a37afe967f X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-07-17 16:36:40 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!arclight.uoregon.edu!wn13feed!wn12feed!worldnet.att.net!216.166.71.14!border3.nntp.aus1.giganews.com!intern1.nntp.aus1.giganews.com!nntp.giganews.com!nntp.gbronline.com!news.gbronline.com.POSTED!not-for-mail NNTP-Posting-Date: Thu, 17 Jul 2003 18:36:38 -0500 Date: Thu, 17 Jul 2003 18:36:48 -0500 From: Wesley Groleau Reply-To: wesgroleau@despammed.com Organization: Ain't no organization here! User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.4) Gecko/20030624 X-Accept-Language: en-us, en, es-mx, pt-br, fr-ca MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: Computer Language Shootout References: <1ec946d1.0307150715.4ba69f85@posting.google.com> <3F149243.80304@attbi.com> <3F15930C.2070907@attbi.com> In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Message-ID: <2YOdnYA-TKiaroqiXTWJjA@gbronline.com> NNTP-Posting-Host: 216.117.18.131 X-Trace: sv3-S3ZOcXsu+0/HkODyeV/d16t/PTvrrT31gF1w3o+4QAJUVS666e6tGmuoKMqO15uBartEi4d8aHtw8Je!GWRvrR31aC2eQAhgGPnxWow9POK3m4jVy4vG9NWOn0xDb08Tgx1yD4jT5bbMPOjJVwBZC/itgK/S!7VDvnA== X-Complaints-To: abuse@gbronline.com X-DMCA-Complaints-To: abuse@gbronline.com X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.1 Xref: archiver1.google.com comp.lang.ada:40447 Date: 2003-07-17T18:36:48-05:00 List-Id: Preben Randhol wrote: > I agree, but as I use this for reading files I usually have a predefined > string that I read each line into, then parse it and then read next > line, so I really don't need a function to do it :-) I often use it for reading files, too. Either I have a declare block for each line, or I have a procedure called for each line that uses the function to get the line. It's nice to use attributes for length and last, or to be able to pass My_String to other subs instead of My_String (My_String'First .. Last)