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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,91cc2b2a631886b8 X-Google-Attributes: gid103376,public From: Simon Wright Subject: Re: Generic Packages Date: 1998/08/27 Message-ID: #1/1 X-Deja-AN: 385187125 X-NNTP-Posting-Host: pogner.demon.co.uk:158.152.70.98 References: <35CF1129.4DCB0B15@lmco.com> <35D82E60.963B3651@iai.fzk.de> X-Complaints-To: abuse@demon.net X-Trace: news.demon.co.uk 904200700 nnrp-05:28321 NO-IDENT pogner.demon.co.uk:158.152.70.98 Organization: At Home Newsgroups: comp.lang.ada Date: 1998-08-27T00:00:00+00:00 List-Id: "Dr. Hubert B. Keller" writes: > Tory Patnoe schrieb: > > > package int_io is new integer_io; use int_io; > > "use int_io;" makes no sense at this point. > Write this after the importing statement (with) of a package. It makes perfect sense; without it you would need to write int_io.put(1); with it, just put(1); See LRM 8.4(6) ff