While And Until
While
Example
while boolean (
command
command
)Syntax
while condition (
commands
)Example
while distance_to_object < 10 (
robot "moveForward" 10
robot "turnLeft" 10
robot "get_data"
distance_to_object = robot."sensor1"
)Until
Example
Syntax
Example
Use Cases
Last updated