Nova flies a test loop over the open field.
Raven wants to watch the steps box closely.
What does it hold after each round?
Rocket says a logbook can show every round.
Nova projects a round by round logbook.
One row for the start.
One row for every round.
The box grows by one each row.
set steps to 0 repeat 3 times: move right change steps by 1 say steps
Say steps is under the repeat too.
Nova says a number every round.
Nova says 1, then 2, then 3.
Build a counting song.
Nova must say 1, then 2, then 3.
This counter starts at 2.
Each round adds 2.
Check every row of the logbook.
set steps to 2 repeat 3 times: move right change steps by 2
| after | steps holds | true? |
|---|---|---|
| start | 2 | ? |
| round 1 | 4 | ? |
| round 2 | 5 | ? |
| round 3 | 8 | ? |
A logbook shows every round.
Lines under the repeat run every round.
Great work, Crew!