home *** CD-ROM | disk | FTP | other *** search
-
- procedure disp(m: string);
- begin
- write(stdout,m);
- flush(stdout);
- if not local then
- transmit_data(m);
- end;
-
- procedure displn(m: longstring);
- {private version of procomm.inc's displn; needed here because of
- tp4's scoping rules}
- begin
- disp(m);
- if not local then
- transmit_data(^M^J);
- writeln;
- end;
-
-