Expand description
Control flow execution for procedural statements
Implements:
- IF/ELSEIF/ELSE conditionals
- WHILE loops
- LOOP (infinite loop with LEAVE)
- REPEAT/UNTIL loops
Functionsยง
- execute_
if - Execute IF statement
- execute_
loop - Execute LOOP (infinite loop until LEAVE)
- execute_
repeat - Execute REPEAT/UNTIL loop
- execute_
while - Execute WHILE loop