Loop Definition
To create a loop, the set of operations on which the loop is applied need to be connected between the Loop Start node and the Loop End node.
Example
In our example, a Plus operation is connected between the loop operators.

- The initial value at the start of the loop is the number 2 (val1).
- The number of iterations is 10 (max).
- The number to be added at each iteration of the Plus operation is 2 (Integer.2).
- As a consequence, the final result of the loop is 22.