Until

Closes a Repeat loop with a condition (loop until condition becomes true)

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Void

Quick Summary

Closes a Repeat loop with a condition (loop until condition becomes true)

Technical Exegesis...

Closes a Repeat loop with a condition (loop until condition becomes true). Evaluates the condition after each iteration. The loop continues while the condition is false, and exits when it becomes true. Since the condition is checked at the end, the loop body always executes at least once. Alternative to Forever for Repeat loops.

Example

Example.bam
; No example implemented yet