home *** CD-ROM | disk | FTP | other *** search
/ BURKS 2 / BURKS_AUG97.ISO / BURKS / LANGUAGE / ADA / LOVELACE / forever.adb < prev    next >
Text File  |  1996-10-01  |  112b  |  8 lines

  1. with Text_IO; use Text_IO;
  2. procedure Forever is
  3. begin
  4.  loop
  5.   Put_Line("Hello again!");
  6.  end loop;
  7. end Forever;
  8.