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,2d0ad8afa0ec077,start X-Google-Attributes: gid103376,public From: dewar@cs.nyu.edu (Robert Dewar) Subject: Re: Ada95 input output - simple question from novice Date: 1996/03/24 Message-ID: #1/1 X-Deja-AN: 144151204 references: <4j6551$pem@baggins.cc.flinders.edu.au> organization: Courant Institute of Mathematical Sciences newsgroups: comp.lang.ada Date: 1996-03-24T00:00:00+00:00 List-Id: Forget about trying to instantiate integer_io until you understand generics better. Meanwhile (since you are clearly using an Ada 95 compiler, probably GNAT), use: with Integer_Text_IO; use Integer_Text_IO; now your original put will work fine, because Integer_Text_IO provides a put for type Integer.