Next

Closes a For loop and increments the loop counter

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Void

Quick Summary

Closes a For loop and increments the loop counter

Technical Exegesis...

Closes a For loop and increments the loop counter. Marks the end of a For loop block. When reached, the loop counter is incremented by the Step value (or 1 if Step not specified), then checked against the end value. If the counter hasn't exceeded the end value, execution jumps back to the statement after For. Required to properly terminate every For loop.

Example

Example.bam
; No example implemented yet