Last active
May 27, 2021 12:51
-
-
Save LeonLenclos/20ddb65ed7949336c1c33b0f467445b8 to your computer and use it in GitHub Desktop.
logo face ('<_ '
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
to nextchar | |
penup | |
right 90 | |
forward 15 | |
left 90 | |
pendown | |
end | |
to parenthese | |
penup | |
repeat 10 [ | |
back 2 | |
left 4 | |
] | |
pendown | |
repeat 20 [ | |
forward 2 | |
right 4 | |
] | |
penup | |
repeat 10 [ | |
back 2 | |
left 4 | |
] | |
end | |
to apostrophe | |
forward 10 | |
back 10 | |
end | |
to chevron | |
right 45 | |
forward 10 back 10 | |
right 90 | |
forward 10 back 10 | |
left 135 | |
end | |
to dash | |
penup | |
back 15 | |
right 90 | |
pendown | |
forward 20 | |
penup | |
left 90 | |
forward 15 | |
end | |
to face | |
parenthese nextchar | |
apostrophe nextchar | |
chevron nextchar | |
dash nextchar | |
nextchar | |
apostrophe nextchar | |
end | |
face | |
nextchar | |
nextchar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment