Skip to content

Files

Latest commit

8e60e60 · Oct 26, 2021

History

History
21 lines (17 loc) · 657 Bytes

moon.md

File metadata and controls

21 lines (17 loc) · 657 Bytes

@flyoutOnly true

@hideIteration true

@explicitHints true

Mission Moon

Step 1

Send your agent to the space module to deliver the calculations. Use the Mathematician's calculations to determine how many moves the agent must make. Forward 25, right 17, and down 3.

~ tutorialhint

Use the ||agent.agent move|| and ||agent.agent turn|| blocks within the ||blocks.on start|| block to deliver the calculations to the space module. Use the Mathematician’s calculations to help you determine the path the Agent should take.

    agent.move(FORWARD, 0)
    agent.turn(RIGHT_TURN)
\\