To continue program execution after an error-recovery procedure has been performed.Any one of the four formats shown above may be used, depending upon where execution is to resume:
Examples:
10 ON ERROR GOTO 900
.
.
900 IF (ERR=230) AND (ERL=90) THEN PRINT "TRY AGAIN": RESUME 80
.
.
If an error occurs after line 10 is executed, the action indicated in line 900 is taken and the program continues at line 80.