Jan 3, 2007

Basic #12, loop controls

next - skips remainder of the code block, forcing the loop to proceed to the next value in the loop.

last - end the loop entirely, skipping the continue block also

redo - reexecute the code block wthout reevaluating the conditional statement for the loop. It skips the remainder of the code block and also the continue block.

No comments: