Iteration
Loop
Example
loop 5 (
command
command
)Syntax
loop number_of_times (
commands
)Example
loop 3 (
moveForward
turnLeft
)Use Cases
Fibonacci Sequence Generation:
Repeated Task Execution:
For
Each
Break Statement
Example
Last updated