Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Excerpt
Code Block
number count = 1;
while(count <= 10) do{
    runnerLog(count);
    count ++;
}while(count <= 10);