statement/RESUME                                             statement/RESUME
 
 NAME
     RESUME -- Continues program execution after an error
 
 ABBREVIATION
     res <shift> U

 SYNOPSIS
     RESUME [<line>|NEXT]

 FUNCTION
     Used to return to execution after TRAPing an error. With no arguments, 
     RESUME attempts to re-execute the line in which the error occured. 
     RESUME NEXT resumes execution at the next statement following the 
     statement containing the error; RESUME <line> will GOTO the specific 
     line and begin execution there.
 
 INPUTS
     <line> - a BASIC line number where program execution should continue
     NEXT   - resume execution at the next statement
 
 RESULT
     Resumes execution after an error at the line where the error occured, or
     at the next BASIC line, or at a given BASIC line.

 EXAMPLES
     None
 
 NOTES
     None
 
 BUGS
     None
 
 SEE ALSO
     CONT
     GOTO
     TRAP