xxxxxxxxxx
15
function setup() {
createCanvas(400, 300);
}
function draw() {
background(226, 180, 220);
rect(150, 50, 50, 50);
fill(200, 25, 25);
rect(70, 50, 25, 70);
fill(71, 194, 255);
rect(250, 50, 40, 90);
fill(139, 255, 71);
//rect(300,50,70,70);
}