continue

Example

continue;

 

If used inside of a statement that forms a loop (repeat, while, do, for, with), it will immediately jump back to the beginning of the loop as if the loop had run through and looped back.  If used outside of a loop it acts as an exit statement, exiting the event.

 

Abyssal_Nuclei - Revision #1