hello vikter,
here is some loop control constructs which will be very useful to u
last - stop the execution of the loop,and continues with
the next statement after the loop (like break in C)
next - Stops the current iteration of the loop , goes back
to the top and starts continues with the next value
of the loop index variable( in for loop).
it is very useful method (like continue in C )
redo - Stops the current execution and goes to the top and
"restart" the loop revaluating the test .