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.2 required=5.0 tests=BAYES_00,FROM_WORDY, INVALID_MSGID,XPRIO autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,cf7a58e8e674126b,start X-Google-Attributes: gid103376,public From: "Ken Garlington" Subject: "with"ing package Standard Date: 2000/05/17 Message-ID: #1/1 X-Deja-AN: 624316585 X-Priority: 3 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 X-Complaints-To: abuse@flash.net X-Trace: news.flash.net 958524438 216.215.81.244 (Tue, 16 May 2000 19:47:18 CDT) Organization: FlashNet Communications, http://www.flash.net X-MSMail-Priority: Normal NNTP-Posting-Date: Tue, 16 May 2000 19:47:18 CDT Newsgroups: comp.lang.ada Date: 2000-05-17T00:00:00+00:00 List-Id: Should I be able to "with" package Standard and/or its children, e.g. with Ada.Text_IO, Standard.ASCII; procedure Test_Return is begin Ada.Text_IO.Put_Line("The position of ASCII.CR is " & Integer'Image(Character'Pos(ASCII.CR))); end Test_Return;