xxxxxxxxxx
15
let w=40;
let bgColor="#9cafb7";
function setup() {
createCanvas(400, 400);
}
function draw() {
background(bgColor);
textSize(w*0.8);
for (let i=0; i < width/w; i++) {
rect(i*w,200,w*0.8);
text(i%3,i*w+w*0.2,200+w*0.7);
}
}