Parameters & Returns
Parameters
This function takes no parameters.
Returns
Quick Summary
Closes a Repeat loop creating an infinite loop
Technical Exegesis...
Closes a Repeat loop creating an infinite loop. Creates a loop that runs indefinitely with no automatic exit condition. Must use Exit keyword within the loop body to break out, typically with an If statement. Use for game loops, event processing, or situations where the exit condition is complex or needs to be checked mid-loop.