๐ Conditions
Conditional Execution
You can conditionally execute blocks or commands using IF
statements.
Syntax
- All commands between
IF
andIF_END
are executed only if the condition is true. - Both values must be quoted.
- Comparison is strict: values must exactly match (including case and spaces).
Example
- The command runs because the condition is true.
- The command does not run because the condition is false.