home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / ada_1 / Examples_demos_ada_fltio < prev    next >
Encoding:
Text File  |  1992-10-01  |  261 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.