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!news.eternal-september.org!feeder.eternal-september.org!aioe.org!.POSTED!not-for-mail From: Luke A. Guest Newsgroups: comp.lang.ada Subject: Re: some trivial questions? Date: Thu, 2 Nov 2017 03:04:47 +0000 Organization: Aioe.org NNTP Server Message-ID: <1322366607.531283770.557603.laguest-archeia.com@nntp.aioe.org> References: <6a5368c5-f015-4dcb-9291-e77b40fa1bf1@googlegroups.com> NNTP-Posting-Host: tVtMYbPS2nGY90crlaFDzw.user.gioia.aioe.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Complaints-To: abuse@aioe.org User-Agent: NewsTap/5.2.6 (iPhone/iPod Touch) X-Notice: Filtered by postfilter v. 0.8.2 Cancel-Lock: sha1:jsLJIinh/GqlWicjKpaFHhQs+tM= Xref: news.eternal-september.org comp.lang.ada:48695 Date: 2017-11-02T03:04:47+00:00 List-Id: wrote: >> with Ada.Text_IO; >> use Ada.Text_IO; >> > > i made a typo in my original post, which i think may have caused some confusion > > i meant to say, why doesn't "use" imply "with" > i think every time you insert > a use, you will most definitely add a with You don't always. It adds to readability to use package names as well in function calls for example. > > it just look to me, that this is a bit redundant to add two line, when > one should do ... the compiler can should easily assume that Some companies insist on not using use in code, you can use renaming, I do. Luke