




🌟 Special thanks to our amazing supporters:
✨ $10 Tier: [Geeks Love Detail]
🌈 $5 Tier: [Benedikt][David Martínez Martí]
This week's update lays the ground for improving localization.
# Loops
`loop` is used to repeat commands. It will repeat the commands in its scope forever. A loop's scope is the commands indented that come after a `loop` line.
```max_run=11
robo_forward() # called once
loop
robo_forward()
robo_left()
robo_left() # never called
```
[ 6085 ]
[ 1391 ]
[ 1889 ]