home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wunderki.zip / HELLO2.PAS < prev    next >
Pascal/Delphi Source File  |  1993-09-30  |  385b  |  16 lines

  1. Program HelloOS2;  {$R-,I-,S-,Q-}
  2. {--- 1993 Matthias Withopf / c't ---}
  3.  
  4.   Procedure DosWrite(Handle : Word;Str : PChar;
  5.              Count : Word;Var WCount : Word); Far;
  6.     External 'DOSCALLS' Index 138;
  7.   Procedure DosExit(x : Word;ExitCode : Word); Far;
  8.     External 'DOSCALLS' Index 5;
  9.  
  10. Var
  11.   w : Word;
  12. Begin
  13.   DosWrite(1,'Hello, OS/2!'^M^J,14,w);
  14.   DosExit(1,0);
  15. End.
  16.