int x; void setup(){ size(255,255); } void draw(){ for(int x=0; x<255; x+=1){ line (0,x,255,x); stroke(0+x); }}