dos_compilers/Logitech Modula-2 v1.1/FILEMESS.DEF

27 lines
559 B
Plaintext
Raw Normal View History

2024-07-01 00:43:04 +02:00
(* Version 1.10, Nov 1984 *)
DEFINITION MODULE FileMessage;
(*
Write file status/response to the terminal
*)
FROM FileSystem IMPORT Response;
EXPORT QUALIFIED WriteResponse;
PROCEDURE WriteResponse (r: Response);
(*
- Write a short description of a FileSystem response on
the terminal.
in: r the response from some FileSystem
operation.
The actual argument for 'r' is typically the field 'res'
of a variable of type 'File'. The printed message is up
to 32 characters long.
*)
END FileMessage.