xxxxxxxxxx
16
var width = 500;
var height = 500;
function setup() {
createCanvas(500, 500);
}
function draw() {
background(220);
for (let y=0; y<=height; y+=height/4){
for (let x=0; x<=width; x+=width/4){
rect(x, y, width/4, width/4);
}
}
}