void setup() { size(100,100); fill(255,255,255); stroke(0,0,0); for(int i=0; i<6; i++) { for(int c=0; c<6; c++) rect(12*i+4*(1+i), 12*c+4*(1+c), 12, 12); } }