The test ships are flying again this week.
The auto-pilot flies each ship in laps.
Nova writes down every lap in a logbook.
Raven wants to read those logbooks.
Maybe the logbooks hold a clue about the drop.
First, the crew practices with small loops.
The lines under repeat are inside the loop.
Nova runs them once every lap.
Stop ends the loop.
So Nova lands once, at the end.
set steps to 0 repeat 3 times: change steps by 1 move right stop land
A loop logbook has one row per lap.
After lap 1, steps holds 1.
After lap 3, steps holds 3.
Now build a loop flight.
Nova moves right 3 times.
Then Nova lands, just once.
Start at 0, and steps matches the lap.
Start at 2, and steps is 2 ahead.
Always check where the box starts.
set steps to 2 repeat 3 times: change steps by 1 move right
| after | steps holds | true? |
|---|---|---|
| start | 2 | ? |
| lap 1 | 3 | ? |
| lap 2 | 5 | ? |
| lap 3 | 5 | ? |
Lines under repeat run every lap.
A logbook has a row per lap.
Check where the box starts.
Great work, Crew!