Descriptions for turtle examples (#599)

This commit is contained in:
Galen Nickel 2017-12-10 19:12:08 -08:00 committed by Peli de Halleux
parent a63d01287a
commit ac78b0c95a
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# Turtle Scanner # Turtle Scanner
The turtle keeps on the scanning the screen. The turtle scans the display over and over again.
```blocks ```blocks
turtle.setPosition(0, 0) turtle.setPosition(0, 0)

View File

@ -1,6 +1,6 @@
# Turtle Spiral # Turtle Spiral
The turtle goes to the center back and forth. A turtle that spirals into the center of the display and back out again.
```blocks ```blocks
let index = 0 let index = 0

View File

@ -1,6 +1,6 @@
# Turtle Square # Turtle Square
A turtle program that runs in a square. A turtle that traces a square pattern.
```blocks ```blocks
turtle.setPosition(0, 0) turtle.setPosition(0, 0)