xxxxxxxxxx
17
function setup() {
createCanvas(320, 240);
noStroke();
}
function draw() {
background(255, 230, 246);
fill(0, 125, 62);
for (let i = 0; i <= width; i = i + 20) {
for (let j = 0; j < height; j = j + 20) {
ellipse(i, j, 8, 8);
} // end j loop
} // end i loop
}