Flow control statements
- Last UpdatedSep 05, 2024
- 1 minute read
XRS Script language supports these flow control statements:
For iteration statements (for, foreach, and while), at any point within their body, you can break out of the loop using a break or continue statement. See Jump statements.
Block level scope is not supported for flow control statements. This means that variables declared within a statement are not locally scoped variables and are accessible also from outside of the code block.