home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / ada / tutorial / add.ada < prev    next >
Text File  |  1991-03-25  |  158b  |  8 lines

  1. with TEXT_IO; use TEXT_IO;
  2. procedure ADD is
  3.    package MY_INT_IO is new INTEGER_IO(INTEGER); use MY_INT_IO;
  4. begin
  5.    PUT(2 + 2);
  6.    NEW_LINE;
  7. end ADD;
  8.