home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / adapm_15.zip / hello.adb < prev    next >
Text File  |  1994-02-28  |  123b  |  7 lines

  1. With Text_Io;
  2. procedure Hello is
  3.   Num : Integer := 1;
  4. begin
  5.   Text_Io.Put_Line ("Hi " & Integer'Image (Num));
  6. end; 
  7.