xxxxxxxxxx
function setup()
{
createCanvas(windowWidth, windowHeight);
background(100);
}
function draw()
{
for (let x= 100; x < windowWidth-100; x += 100)
{
for (let y= 100; y < windowHeight-50; y += 100)
{
circle (x, y, 50);
}
}
}