Microsoft Small Basic

Program Listing: ZPL713
GraphicsWindow.Width=500
GraphicsWindow.Height=500
Turtle.Show()
Turtle.Speed=10
For i=1 To 100
GraphicsWindow.PenColor=GraphicsWindow.GetRandomColor()
Turtle.MoveTo(Math.GetRandomNumber(500),Math.GetRandomNumber(500))
EndFor