Challenge Lined Paper
Convert it to a for loop



We used a while loop that draws 20 evenly spaced horizontal lines (lines that go from left to right) to draw lined paper.

We want you to convert the while loop to a for loop.

You may find it easier to complete this step, if you comment out the provided while loop and use it as a guide to create your for loop.

For (----; ----; ----) {
Var liney = 20 + (I * 20);
Line(0, liney, 4000, liney);
}
background(255, 255, 247);
stroke(173, 222, 237);