TURTLE GRAPHICS 2.01



ASSIGNMENT:
To make this image you will need to first make a big red square at (0,0):
   re 40 [[ fd 80 rt 90 fd 1 rt 90 fd 80 lt 90 fd 1 lt 90 ]]
Next you need to make two black rectangles: [one starting at (30,10) and the other starting at (10,30)]
   re 30 [[ fd 20 lt 90 fd 1 lt 90 fd 20 rt 90 fd 1 rt 90 ]]
   re 30 [[ fd 20 rt 90 fd 1 rt 90 fd 20 lt 90 fd 1 lt 90 ]]
Finally you need to make two yellow rectangles. Here's one of them:
   re 25 [[ fd 10 rt 90 fd 1 rt 90 fd 10 lt 90 fd 1 lt 90 ]]
You should start this one at (15,35).