10 lines
186 B
Text
10 lines
186 B
Text
while cnt < 100
|
|
x = randint 31 - 16
|
|
y = randint 31 - 16
|
|
r = sqrt (x * x + y * y)
|
|
if 10 <= r and r <= 15
|
|
cnt += 1
|
|
move 50 + x * 2 50 + y * 2
|
|
circle 1
|
|
.
|
|
.
|