xxxxxxxxxx
19
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
for (let x = 0; x < width; x += 40) {
// rect(x, 0, 40, height);
}
for (let c=0; c<10; c++) {
if(c!==6){
let x = c*40;
rect(x,0,40,height);
}
}
}