home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 25 / nopv25.iso / 040A / TMTP100O.ZIP / EXAMPLES / OS2 / HELLO / HELLO.PAS
Encoding:
Pascal/Delphi Source File  |  1996-07-04  |  573 b   |  16 lines

  1. {*******************************************************}
  2. {                                                       }
  3. {       Pascal/Lite Runtime Library                     }
  4. {       "Hello, World" example program                  }
  5. {                                                       }
  6. {       Copyright (C) 1996    T M T   Corporation       }
  7. {                                                       }
  8. {*******************************************************}
  9.  
  10. program hello;
  11. uses crt;
  12. begin
  13.     textcolor (lightred);
  14.     writeln ('Hello, world');
  15. end.
  16.