While

Begins a loop that continues while a condition is true

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Void

Quick Summary

Begins a loop that continues while a condition is true

Technical Exegesis...

Begins a loop that continues while a condition is true. Evaluates the condition before each iteration. The loop body executes only if the condition is true (non-zero). If the condition is false initially, the loop body never executes. Must be closed with Wend. Use for loops where the number of iterations is not known in advance.

Example

Example.bam
; No example implemented yet