Spirals
Turtle.Show() Turtle.PenDown() For i = 1 To 40 GraphicsWindow.PenColor = GraphicsWindow.GetRandomColor() Turtle.Move(i) Turtle.Turn(10) EndFor
The above code will draw a cool multi-coloured spiral. Your task is to take this code and create your own pattern. Try changing the numbers, swapping turn for the variable I, adding more commands or even doing some simple maths with the variable I. Experiment! See what you can produce.

You need to log in or create an account to submit code!











