Dora
int r, g, b; void setup() { size(600, 600); noStroke(); for(int y=0; y<height; y+=20) for(int x=0; x<width; x+=30) { r=(int)random(28); g=(int)random(162); b=(int)random(89); fill(r, g, b); ellipse(x, y, 30, 20); rect (x, y, 30, 20)
17:07
+314