home *** CD-ROM | disk | FTP | other *** search
- procedure errexit(msg: string);
- { write a message to the console and exit the program with an error code }
- { Copyright 1988,1989, by J. W. Rider }
-
- var fe:text; begin
-
- { The global variable "pname" must be set with the name of the program. }
-
- assign(fe,'CON'); rewrite(fe); writeln(fe,pname,': ',msg); close(fe);
- halt(1); end;
-