Challenge 5 - Patch

You will need procedures for:
How is the patch made? You could decide to draw only some of hte shapes as the rest (say the triangle at the centre will be defined by the squares around it.

How about colouring the squares in? Here are the commands you will need:
SETFLOODCOLOR < n> - where n can be any number from 1 to 15
FILL - - - - - - - - - - - - - - this fills the shape with your flood colour. Note that you have to be inside a shape to fill it.

Here is an example of drawing an equilateral triangle - moving inside it to fill it the returning the turtle to the starting point. Notice also that you need to lift the pen to move it into the shape and put it down again:

to filltri
REPEAT 3 [FD 40 RT120]
PU
RT30 FD 2 PD
SETFLOODCOLOR8
FILL
BK 2 LT 30
end