Skip to main content

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.

  1. Sequential Execution: Blocks are executed one after another in the order they are connected.
  2. Branching:
    • If-Else blocks allow for conditional execution paths.
    • Switch-Case blocks can be used for multiple condition branching.
  3. 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.
  4. Subroutines:
    • Custom blocks can be created to encapsulate reusable sequences of steps.
    info

    Not available yet