Mission Possible
Your mission is to create a pattern of boxes as described in lesson and in the above video. Below is the code to get you started.
GraphicsWindow.Show() GraphicsWindow.Title = "My First Program" GraphicsWindow.BackgroundColor = "red" GraphicsWindow.PenColor = "white" GraphicsWindow.drawRectangle(10,10, 100,100) GraphicsWindow.PenColor = "blue" GraphicsWindow.drawRectangle(20,20, 80,80) GraphicsWindow.PenColor = "white" GraphicsWindow.drawRectangle(30,30, 60,60) GraphicsWindow.PenColor = "blue" GraphicsWindow.drawRectangle(40,40, 40,40)

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











