-- $Header: /ct/interp/ctbasio.ada,v 1.4 84/04/23 13:24:24 penny Exp $ -- A small package to provide the user with generic -- instantiations for the builtin types integer, boolean -- and floating point types. with text_io;use text_io; package ct_basic_io is package int_io is new integer_io(integer); package real_io is new float_io(float); package bool_io is new enumeration_io(boolean); end ct_basic_io;