CONT ==== Function -------- **CONT** continues Basic program after :doc:`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 :doc:`stop` statement - execution of an :doc:`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.