Loop
Repeat Count

Repeats the specified number of times to execute the block connected to [do].
- Input [type]: number of repetitions [Number]
- Output [type]: none
Conditional Loop

Repeatedly executes blocks while the condition is true or while the condition is false. This corresponds to while or until loops in programming languages.
- Input [type]: condition [Digital]
- Output [type]: none
Count Loop

Repeatedly executes the block connected to [do] while a local variable increases/decreases from the start number to the end number at specified intervals.
This corresponds to for loops in programming languages.
- Input [type]: start number [Number], end number [Number], interval [Number]
- Output [type]: none
List Loop

Sequentially stores each item in the list to a local variable and repeatedly executes the block connected to [do]. This corresponds to list iterators in programming languages.
- Input [type]: list to iterate [List]
- Output [type]: none
Break Loop

Breaks out of the loop block or skips the remaining part and moves to the next iteration. This corresponds to break statements (break loop) and continue statements (continue loop) in programming languages. This block can only be used within loop blocks.