To

Specifies the end value in a For loop

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Void

Quick Summary

Specifies the end value in a For loop

Technical Exegesis...

Specifies the end value in a For loop. Part of the For...To...Next syntax. Defines the target value that the loop counter will count towards. The loop continues executing until the counter reaches or exceeds this value. Required in every For loop statement.

Example

Example.bam
; No example implemented yet