QBasic 1.1: RESUME Statement

Syntax

RESUME [{line | NEXT}]

Description / Parameter(s)

line The label or number of the line where execution resumes. If line is 0 or omitted, execution resumes with the statement that caused the error.
NEXT Resumes execution at the statement following the statement that caused the error.

Example

' For an example, see "ON ERROR" Statement