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-Thread: a07f3367d7,4fbc7359e3ccba18,start X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news2.google.com!npeer03.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!nntp.club.cc.cmu.edu!feeder.erje.net!news-2.dfn.de!news.dfn.de!news.uni-jena.de!news1.uni-leipzig.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail From: Georg Newsgroups: comp.lang.ada Subject: BASIC_NUM_IO Date: 1 Jun 2009 07:57:09 GMT Message-ID: <78hfulF1m321pU2@mid.individual.net> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Trace: individual.net tIGM8UDmZGZSURkREqydyAjIBkbMzkRL0YsSpHoWXsRxglChDH Cancel-Lock: sha1:/ll15clysVqtSuu/QHwL+Hgu/LQ= User-Agent: Pan/0.132 (Waxed in Black) Xref: g2news2.google.com comp.lang.ada:6153 Date: 2009-06-01T07:57:09+00:00 List-Id: Hi All, in my Ada books I find the with-clause "with BASIC_NUM_IO; use BASIC_NUM_IO". The following program with basic_num_io; use basic_num_io; procedure test_ranges is begin put_line(short_integer'size); end test_ranges; does not compile because the compiler complaints that the package "basic_num_io" does not exist. Is there a replacement for this package in GNAT? How can I print number on the screen instead? Regards Georg