diff options
Diffstat (limited to 'kturtle/data/squaresss.logo')
-rw-r--r-- | kturtle/data/squaresss.logo | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/kturtle/data/squaresss.logo b/kturtle/data/squaresss.logo new file mode 100644 index 00000000..e3700b8c --- /dev/null +++ b/kturtle/data/squaresss.logo @@ -0,0 +1,22 @@ +# draw many squares + +learn square X [ + repeat 4 [ + forward X + turnleft 90 + ] +] + +reset +canvassize 400, 400 +go 150,200 +penwidth 5 +hide + +repeat 12 [ + penup + forward 30 + pendown + square 80 + turnright 30 +] |