home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 1 / LSD Compendium Deluxe 1.iso / a / programming / misc / ada1110b.lha / Examples / Dine / io_libs.ada < prev    next >
Encoding:
Text File  |  1992-03-02  |  262 b   |  11 lines

  1. -- Precompiled instantiations of Integer_IO and
  2. -- Float_IO for the predefined Integer and Float types
  3.  
  4. WITH Text_IO;
  5. PACKAGE My_Int_IO IS
  6.   NEW Text_IO.Integer_IO (Num => Integer);
  7.  
  8. WITH Text_IO;
  9. PACKAGE My_Flt_IO IS
  10.   NEW Text_IO.Float_IO   (Num => Float);
  11.