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,63360011f8addace X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-07-17 12:22:44 PST Path: archiver1.google.com!news1.google.com!sn-xit-02!sn-xit-06!sn-post-01!supernews.com!corp.supernews.com!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: gnat: time-slicing Date: Wed, 17 Jul 2002 14:21:58 -0500 Organization: Posted via Supernews, http://www.supernews.com Message-ID: References: <5ee5b646.0207161329.5c8e387b@posting.google.com> X-Newsreader: Microsoft Outlook Express 4.72.3612.1700 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3719.2500 X-Complaints-To: newsabuse@supernews.com Xref: archiver1.google.com comp.lang.ada:27204 Date: 2002-07-17T14:21:58-05:00 List-Id: Jan Prazak wrote in message ... >On Wed, 17 Jul 2002 15:44:24 -0100, Pascal Obry wrote: > > > >>> There is no output to a file. >> >> Standard output is a file. > >But Put_Line does not write to standard output, you would have to specify >a file as a parameter. When you don't specify a file parameter to Put_Line, it writes to Current_Output which, if you haven't changed it, is Standard_Output. Text_IO *always* writes to a file. Duh. Randy.