170 
 
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.