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=unavailable autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!feeder.eternal-september.org!nntp-feed.chiark.greenend.org.uk!ewrotcd!newsfeed.xs3.de!io.xs3.de!news.jacob-sparre.dk!franka.jacob-sparre.dk!pnx.dk!.POSTED.rrsoftware.com!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: some trivial questions? Date: Thu, 16 Nov 2017 19:06:07 -0600 Organization: JSA Research & Innovation Message-ID: References: <6a5368c5-f015-4dcb-9291-e77b40fa1bf1@googlegroups.com> <39330489-ec8b-481f-bcff-a5b7d1a2d8e3@googlegroups.com> Injection-Date: Fri, 17 Nov 2017 01:06:07 -0000 (UTC) Injection-Info: franka.jacob-sparre.dk; posting-host="rrsoftware.com:24.196.82.226"; logging-data="25950"; mail-complaints-to="news@jacob-sparre.dk" X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.5931 X-RFC2646: Format=Flowed; Response X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.7246 Xref: feeder.eternal-september.org comp.lang.ada:48950 Date: 2017-11-16T19:06:07-06:00 List-Id: "Dmitry A. Kazakov" wrote in message news:ou21f3$1bo$1@gioia.aioe.org... ... > As weird as > > with Ada.Text_IO; > use Ada.Text_IO; Surely no one outside of a beginning programming class actually writes this sort of thing. (Making the sort of pronouncement that Dmitry is famous for ;-) Ada.Text_IO.Put_Line isn't enough longer than just Put_Line to get any real value out of the use clause, and few Ada programs have that many I/O lines. I might put a "use Ada.Text_IO" into a routine that opens a Text_IO file, but that's about it. Randy.