IF I THEN commands [ ELSE commands ]
If I evaluates to a nonzero value, then
the commands from after the THEN statement to the end of
the line or the ELSE keyword (if present) are executed.
If commands consists solely of a line number
L, then it behaves as if
commands were "GOTO L".
If I evaluates to 0, then the same action
is performed with the commands or line number from the
ELSE to the end of the line.
FOR VN = N1 TO N2
[ STEP N3 ]
NEXT [ VN
[ ,