xxxxxxxxxx
22
function setup() {
createCanvas(windowWidth, windowHeight);
noLoop();
}
function draw() {
background(220, 20, 120);
fill(255, 0, 0);
rect(20, 20, 60);
stroke(255);
rect(100, 20, 60);
fill(0, 0, 255);
rect(180, 20, 60);
fill(255, 0, 255);
stroke(0, 255, 0);
rect(260, 20, 60);
}