home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / tutil.arc / COM.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1980-01-01  |  183 b   |  11 lines

  1. program com(output);
  2.  
  3. var
  4.   comline : String[128] absolute cseg:$0080;
  5.  
  6. begin
  7.   writeln;
  8.   writeln('This was the command line parameters');
  9.   writeln('{',comline,'}')
  10. end.
  11.