diff --git a/turtle.js b/turtle.js index 79b879e..10689a7 100644 --- a/turtle.js +++ b/turtle.js @@ -1,12 +1,18 @@ function turtle(){ + penSize(3); + penColor('purple'); + right(randint(100)); forward(randint(200)); + penup(); right(randint()); forward(randint()); + penSize(12); + penColor('#00ff8f'); pendown(); right(randint(45)); forward(randint(300));