xxxxxxxxxx
18
function setup() {
createCanvas(windowWidth, windowHeight);
noLoop();
}
function draw() {
background(220, 20, 120);
rect(10, 10, 80);
rect(110, 10, 80);
ellipse(110, 200, 80);
ellipse(210, 200, 80);
rect(210, 300, 80);
ellipse(310, 300, 80);
}