summaryrefslogtreecommitdiffstats
path: root/kturtle/data/squaresss.logo
blob: e3700b8cfb476adf7023fa7a6a92a6b86ebc3d55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
]