xxxxxxxxxx
18
function setup() {
createCanvas(300, 300);
noFill();
noLoop();
}
function draw() {
background(220);
const s = 100;
print("i j");
for (let i = 0; i < 4; i++) {
for (let j = 0; j < 4; j++) {
print(i, j)
}
}
}