Respuesta :

Answer:

I think the answer is "Make a function called function that prints our the number of t shirts and how much it cost." is it?

Explanation:

Answer:

French Flag:

function start(){  

   var rectWidth = getWidth() / 3;

   var rectHeight = getHeight();

   

var blueRect = new Rectangle (rectWidth, rectHeight);

blueRect.setColor(Color.blue);

blueRect.setPosition(0, 0);

 

var redRect = new Rectangle (rectWidth,rectHeight);

redRect.setColor(Color.red);

redRect.setPosition(rectWidth * 2, 0);

 

add(blueRect);

add(redRect);

}