home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / 1991 / 07_08 / review / ada / hello.ada next >
Encoding:
Text File  |  1991-01-17  |  105 b   |  6 lines

  1. with text_io; use text_io;
  2. procedure hello is 
  3. begin 
  4.    put("Hello World"); new_line; 
  5. end hello;
  6.