1.6.10 Loop
【forever】
● The command contained in the loop will be executed in infinite loop.
【repeat() times do】
● The command contained in the loop will be executed X times.
【repeat while/until do】
● When the condition is not met, it jumps out of the loop.
【break】
●
Terminate the loop.
1.6.11 Math
You can use the above code block to do some complex operations such as
addition, subtraction, multiplication, and division, exponential
operations.