Challenge A Loopy Ruler
Loop it!
See how we repeat the text() command 7 times, to draw ruler marks for the x coordinates along the top? Let's turn that into a while loop instead! Remember to think about: 1) What do you want to repeat each time? 2) What value do you want to change each time? 3) When do you want to stop looping?
Var x= 0;
While (---- < ----) {
Text(----, ---, 10);
---- += ----;
}