Created
September 12, 2017 12:59
-
-
Save litan/5cd5695f88e16b7b873cd590b84240f8 to your computer and use it in GitHub Desktop.
A turtle drawing
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
clear() | |
setSpeed(fast) | |
setPenColor(darkGray) | |
repeat(18) { | |
forward(100) | |
right(100) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment