Control Flow
In the TV Labs NoCode language, the control flow is based on connecting steps (blocks) in a visual manner. Each block has a default input and output, with the ability to produce additional outputs that can be referenced later.
- Sequential Execution: Blocks are executed one after another in the order they are connected.
- Branching:
- If-Else blocks allow for conditional execution paths.
- Switch-Case blocks can be used for multiple condition branching.
- Looping:
- Repeat blocks execute a set of steps a specified number of times.
- While blocks execute a set of steps as long as a condition is true.
- Subroutines:
- Custom blocks can be created to encapsulate reusable sequences of steps.
infoNot available yet