Procedure Runerror (ErrorCode : Word) ;
Runerror stops the execution of the program, and generates a run-time error ErrorCode.
None.
Program Example55; { Program to demonstrate the RunError function. } begin { The program will stop end emit a run-error 106 } RunError (106); end.