home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / xc212os2.zip / SAMPLES / SIMPLE / hello.mod < prev    next >
Text File  |  1994-07-21  |  110b  |  9 lines

  1. MODULE hello;
  2.  
  3. IMPORT InOut;
  4.  
  5. BEGIN
  6.   InOut.WriteString ("Hello World!");
  7.   InOut.WriteLn;
  8. END hello.
  9.