CONT¶
Function¶
CONT continues Basic program after STOP.
Syntax¶
CONT [Line number]
‘Line number’ is optional and allows the program to continue from a different line number.
Examples¶
CONT
continue from next line, or
CONT 1000
continue from line 1000
Remarks¶
Allows a program to continue execution from the line following the occurrence of:
detection of the break key
execution of a STOP statement
execution of an END statement
detection of a syntax error
By specifying a line number argument continuation from can occur from that line number.
In the case of multiple statement lines, execution will begin from the next line.