Checkpoint 18.4.1.
- turtleName
- drawWall calls its parameter turtleName. But there is nothing named "turtle" in drawDoor.
- turtle
- rectangle calls its parameter turtle. But there is nothing named "turtle" in drawDoor.
- currentTurtle
- Correct.
We want to write the code for the
drawDoor
procedure. Below is the code for it.def drawDoor(currentTurtle):
______________.fillcolor("black")
rectangle(______________, 50, 100)
What name belongs in the ______________?