Tagged: statements

for

for Repeat statements a specific number of times. The general form of a for statement is: for variable = expr, statement, …, statement END The columns of the expression are stored one at a...

end

end Terminate scope of FOR, WHILE, SWITCH, TRY, and IF statements. Without END’s, FOR, WHILE, SWITCH, TRY, and IF wait for further input. Each end is paired with the closest previous unpaired FOR, WHILE,...

else

else Used with IF. else is used with IF. The statements after the else are executed if all the preceding IF and ELSEIF expressions are false. The general form of the IF statement is...

continue

continue Pass control to the next iteration of FOR or WHILE loop. continue passes control to the next iteration of FOR or WHILE loop in which it appears, skipping any remaining statements in the...