-
Notifications
You must be signed in to change notification settings - Fork 289
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Speeds up the turtle a bit, from the old value of 3 (mapped in the turtle as slow), to 10 (fast). It's faster but not by much I think. New: https://github.com/user-attachments/assets/232fbe14-4c12-4e99-a3d2-56ceb453b8ef Old: https://github.com/user-attachments/assets/0423c906-6a52-41de-a26e-c774fa6fe6b8 Fixes #5837 **How to test** * Go to level 12 and paste this program ``` define square repeat 4 times turn 90 forward 40 call square forward 50 call square forward 50 call square ```
- Loading branch information
Showing
4 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,5 +10,5 @@ | |
t.penup() | ||
t.left(90) | ||
t.pendown() | ||
t.speed(3) | ||
t.speed(10) | ||
t.showturtle() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ t.hideturtle() | |
t.penup() | ||
t.left(90) | ||
t.pendown() | ||
t.speed(3) | ||
t.speed(10) | ||
t.showturtle() | ||
`; | ||
|
||
|