xxxxxxxxxx
30
function setup()
{
createCanvas(windowWidth, windowHeight);
background(222)
let rows = 200 ;
let cols = 200;
}
function draw()
{
for (let i=0; i<=rows; i++)
{
for (let j=0; j<=cols ; j++)
{
rect( i , j, 20);
}
}
}