mini-io-errors.red 209 B

123456789101112131415
  1. % MINI-IO-ERRORS.RED
  2. Procedure IoError M;
  3. <<terpri();
  4. ErrorHeader();
  5. Prin2t M;
  6. RDS 0;
  7. WRS 1;
  8. NIL>>;
  9. procedure ContOpenError(fil,how);
  10. IoError List("Cant Open file ",fil," for ",how);
  11. End;