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.1 required=5.0 tests=BAYES_00, PP_MIME_FAKE_ASCII_TEXT autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,c689b55786a9f2bd X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII Path: g2news2.google.com!news4.google.com!feeder3.cambriumusenet.nl!feeder1.cambriumusenet.nl!feed.tweaknews.nl!138.195.8.3.MISMATCH!news.ecp.fr!news.jacob-sparre.dk!pnx.dk!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: for S'Image use Func?? Date: Fri, 7 May 2010 16:27:55 -0500 Organization: Jacob Sparre Andersen Message-ID: References: <4be417b4$0$6992$9b4e6d93@newsspool4.arcor-online.net> NNTP-Posting-Host: static-69-95-181-76.mad.choiceone.net X-Trace: munin.nbi.dk 1273267676 20329 69.95.181.76 (7 May 2010 21:27:56 GMT) X-Complaints-To: news@jacob-sparre.dk NNTP-Posting-Date: Fri, 7 May 2010 21:27:56 +0000 (UTC) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.5843 X-RFC2646: Format=Flowed; Original X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5579 Xref: g2news2.google.com comp.lang.ada:11400 Date: 2010-05-07T16:27:55-05:00 List-Id: "Robert A Duff" wrote in message news:wccpr17h2od.fsf@shell01.TheWorld.com... > "Yannick Duch�ne (Hibou57)" writes: > >> Le Fri, 07 May 2010 15:37:55 +0200, Georg Bauhaus >> a �crit: >>> Put (Num_Errors); >>> Put_Line (" errors detected."); >> Here is, that's also my preferred way to do to output execution logs. >> >> That's not so much annoying, while this is a >> written-once-used-many-times. > > Well, that "Put (Num_Errors);" is hiding something. You have to > instantiate Text_IO.Integer_IO for all the integer types you > need to output. That's annoying. It doesn't work very well, either, if you are outputting to a message box or to a log manager: in both cases the entire message string has to be passed at once. (That's the case in virtually all of my newer programs.) Not many real programs do much output to Standard Output. Randy.