Tagged: while

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,...

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...

break

break Terminate execution of WHILE or FOR loop. break terminates the execution of FOR and WHILE loops. In nested loops, break exits from the innermost loop only. If you use break outside of a...