int i; void setup(){ size(300,300); } void loop(){ background(255,255,255); line(0,i,300,i); i += 1; }