home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / TOOL_INC.ZIP / MINIDISP.INC < prev    next >
Encoding:
Text File  |  1988-01-29  |  353 b   |  20 lines

  1.  
  2. procedure disp(m: string);
  3. begin
  4.    write(stdout,m);
  5.    flush(stdout);
  6.    if not local then 
  7.       transmit_data(m);
  8. end;
  9.  
  10. procedure displn(m: longstring);
  11.    {private version of procomm.inc's displn; needed here because of
  12.     tp4's scoping rules}
  13. begin
  14.    disp(m);
  15.    if not local then
  16.       transmit_data(^M^J);
  17.    writeln;
  18. end;
  19.  
  20.