Code Monkey Answers 1-100 Page
: for b in bananas , indent if distance to b < 15 , indent2 turn to b , indent2 step distance to b
This section introduces primary directional commands. Code execution happens sequentially from top to bottom. Syntax Introduced code monkey answers 1-100
Repetition is key. The repeat command saves you from writing the same step multiple times. : for b in bananas , indent if
: The standard syntax for a loop that repeats "n" times. : for b in bananas
The monkey gets the banana, but the code is inefficient. Two Stars: The monkey succeeds using fewer lines of code.






