We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f99381 commit eb4b83cCopy full SHA for eb4b83c
docs/projects/turtle-square.md
@@ -47,7 +47,7 @@ Did you notice the pattern of repeated blocks needed to draw a square? Try using
47
48
```blocks
49
input.onButtonPressed(Button.A, function() {
50
- for(let index = 0; index <= 4; index++) {
+ for(let index = 0; index <= 3; index++) {
51
turtle.forward(1)
52
turtle.turnRight()
53
}
@@ -61,7 +61,7 @@ The turtle holds a **pen** that can turn on LEDs. If you add the ``||turtle:pen|
61
62
63
turtle.pen(TurtlePenMode.Down)
64
65
66
67
0 commit comments