xxxxxxxxxx
19
let w,h;
let col=10;
let row=10;
function setup() {
createCanvas(400, 400);
w=width/10;
h=height/10;
}
function draw() {
background(220);
for(let i=0; i<col; i++){
for(let j=0; j<row; j++){
rect(i*w,i*h,w,h)
}
}
}