Created
August 1, 2016 19:55
-
-
Save loretoparisi/968b44cd556e2a3b659c4d279ea55bf7 to your computer and use it in GitHub Desktop.
Olympic Rings in Logo compatibile with JSLogo Interpreter - http://www.calormen.com/jslogo/
This file contains hidden or 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 circle | |
REPEAT 180 [FD 1 RT 2] | |
END | |
TO place | |
PU | |
RT 90 | |
FD 60 | |
LT 90 | |
PD | |
END | |
SetPenSize [4 4] | |
CS | |
SETPOS [ 0 0 ] | |
setcolor pick [blue] | |
circle | |
place | |
setcolor pick [black] | |
circle | |
place | |
setcolor pick [red] | |
circle | |
PU | |
LT 90 | |
FD 88 | |
LT 90 | |
FD 35 | |
LT 180 | |
PD | |
setcolor pick [yellow] | |
circle | |
place | |
setcolor pick [green] | |
circle |
Some Logo docs:
Seymour Papert
The Logo Programming Language
MSWLogo
ACSLogo (MacOS X)
[Common MSWLogo commands](COMMON MSW LOGO COMMANDS)
Logo Getting Started
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Made with JSLogo inspired and adapted from lafontaine - graphical logo interpreter