IODefs.mesa
a kludge for MPC, writes to CommandTool window
Last Edited by: McCreight, January 31, 1985 1:49:26 pm PST
DIRECTORY IO, Rope;
IODefs: CEDAR DEFINITIONS =
BEGIN
log: PUBLIC IO.STREAM;
WriteString, WriteLine: PROC [s: Rope.ROPE];
WriteChar: PROC [c: CHARACTER];
WriteDecimal: PROC [n: INT];
WriteReal: PROC [r: REAL];
PrintTime: PUBLIC PROC [msg: Rope.ROPE ← NIL];
PostIt: PROC [s: Rope.ROPE];
END.