home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 541a.lha / M2Pascal / src / StandardIO.def < prev    next >
Encoding:
Modula Definition  |  1991-08-10  |  389 b   |  16 lines

  1. DEFINITION MODULE StandardIO ;
  2.  (* 
  3.    These routines provide support for modula-2 procecedures intended
  4.    for Standard I/O. ( For example the procedure "WriteString" ).
  5.  *)
  6.  
  7. FROM scan   IMPORT IndentArray,   STRING;
  8.  
  9.  
  10. PROCEDURE StartsWithWRITE ( symbol : STRING ) : BOOLEAN;
  11.  
  12. PROCEDURE ProcessWRITE ( indent  : IndentArray ;
  13.                          symbol  : STRING );
  14.  
  15. END StandardIO.
  16.