void setup() { size(500,500); } void draw() { float x; stroke(0,150,0); x=0; for (x = 0; x<=width; x+=5){ //// line (x,height, x, height-10); } }