Last Modified: 1/3/2021
Exits out of the current Scope.
Name | Type | Required | Description |
Scope | Keyword | Yes | The Scope you're exiting. |
ScopeType |
Case |
Do, Loop |
For |
Function |
Sub |
While |
Syntax: Exit <Scope> |
x = 0 Do x++ If x = 5 Then Exit Do Loop Print x |