Skip to content

Files

Latest commit

 

History

History
27 lines (16 loc) · 586 Bytes

continue.md

File metadata and controls

27 lines (16 loc) · 586 Bytes

CONTINUE

Syntax

CONTINUE DO
CONTINUE FOR
CONTINUE WHILE

Description

Restarts the current loop at the initial control statement immediately, as though the CONTINUE was an end of loop. While conditions are checked again, and FOR variables are incremented or decremented as appropriate as would be normal for entering the next loop.

Remarks

  • This statement is NOT Sinclair compatible, and is NOT related to the Sinclair BASIC CONTINUE statement.

See also