Parameters & Returns
Parameters
This function takes no parameters.
Returns
Quick Summary
Begins a loop that checks condition at the end (post-test loop)
Technical Exegesis...
Begins a loop that checks condition at the end (post-test loop). The loop body always executes at least once since the condition is evaluated after each iteration. Can be closed with Until (condition-based exit) or Forever (infinite loop requiring explicit Exit). Use when you need the loop body to run before checking the exit condition.