476 B
476 B
Turtle Spiral
A turtle that spirals into the center of the display and back out again.
let index = 0
turtle.setPosition(0, 0)
turtle.turnRight()
basic.forever(() => {
for (let index = 0; index <= 4; index++) {
turtle.forward(4 - index)
turtle.turnRight()
}
for (let index = 0; index <= 4; index++) {
turtle.turnLeft()
turtle.back(index)
}
})
microturtle=github:Microsoft/pxt-microturtle#master