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,7bbb352cbf633c73,start X-Google-Attributes: gid103376,public From: rgelb@csulb.edu (Robert Gelb) Subject: Help with Text_IO Instantiation! Date: 1996/04/21 Message-ID: <4lc67p$jeh@hatathli.csulb.edu>#1/1 X-Deja-AN: 150576725 organization: Cal State Long Beach newsgroups: comp.lang.ada Date: 1996-04-21T00:00:00+00:00 List-Id: I have the following code: procedure test is type string is array(integer range 1..10) of character; type SaType is array(integer range <>) of string; StrArray:SaType(1..5); begin put(StrArray(1)); end test; What kind of Text_IO instatiation do I need to specify in order to make 'put(StrArray(1));' statement work. I've tried with Ada.Text_Io, Ada.Integer_Text_Io; use Ada.Text_Io, Ada.Integer_Text_Io; but it doesn't seem to work with the type of string I declared. I am using ADA95.