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,c78c0ffce353ef4f X-Google-Attributes: gid103376,public From: Dale Stanbrough Subject: Re: BASIC_NUM_IO?? Date: 1998/07/07 Message-ID: <6nu8lb$gct$1@goanna.cs.rmit.edu.au>#1/1 X-Deja-AN: 369373918 Distribution: world Content-Transfer-Encoding: 8bit References: <01bda9d6$ab2b9ea0$0c40a8c2@j.couston> Content-Type: text/plain; charset=ISO-8859-1 X-XXMessage-ID: Organization: RMIT Mime-Version: 1.0 Newsgroups: comp.lang.ada Date: 1998-07-07T00:00:00+00:00 List-Id: Jamie, j.couston@virgin.net writes: "I'm a complete newbie to Ada and am currently working my way through the book 'Ada 95 from the beginning' by Jan Skansholm (the selected text for my University). However there are several references to a package called BASIC_NUM_IO which I do not have (I am running GNAT under Win 95). I know that this package is a combination of two others in order to facilitate reading and writing of numbers at the console (I think?)." The package is listed in the back of the book. It's only 20 or so lines, so it's pretty easy to type in. Alternatively you can replace with basic_num_io; use basic_num_io; with with ada.text_io; use ada.text_io; with ada.integer_text_io; use ada.integer_text_io; with ada.float_text_io; use ada.float_text_io; and the programs should still run just fine. Dale