Blitz3D Docs -> Exit
Exit
Parameters:
NoneDescription:
This command will allow you to leave a For .. Next loop as well as many other types of loops prematurely (assuming a condition was met or other planned event). It exits the IMMEDIATE loop - you'll need one for each 'nest' of loops you want to exit from.See also: For, While, Repeat.
Example:
; EXIT Command sample For t = 1 To 100 Print t If t = 50 Then Exit Next
Comments
None.
Blitz3D Manual Forum
BlitzPlus Equivalent Command




