xxxxxxxxxx
20
function setup() {
createCanvas(400, 400);
background(220);
noStroke();
for(let i = 0; i < 8; i++){
for(let j = 0; j < 8; j++){
if((i + j) % 2 != 0){
fill(20, 40, 65);
}
else{
fill(100, 200, 180);
}
square(j * 50, i * 50, 50);
}
}
}
function draw() {
}