// pg 84 // size(300,300); background (0,0,255); int y = 10; while(y<100) { // loop! rect(100,y, 100,10); y = y + 20; }