Logo Command Review
|
| Command(Abbreviation) |
Action |
| FORWARD (FD) |
moves the turtle in the direction
it's facing. |
| BACKWARD (BK) |
moves the turtle in the direction opposite the
one it's facing. |
| CLEARSCREEN (CS) |
clears the screen and moves the turtle to
HOME. |
| LEFT (LT) |
turns the turtle to the left. |
| RIGHT (RT) |
turns the turtle to the right. |
| PENDOWN (PD) |
puts the turtle's pen down; the turtle will draw
when moved. |
| PENUP (PU) |
picks the turtle's pen up; the turtle will not
draw when moved. |
| HOME |
moves the turtle to the center or origin of the
drawing window. Sets the turtle heading to 0 -
makes it point to the top of the screen. |
| TO |
signals to the turtle that you are going to teach it a new
procedure. |
| END |
ends a list of commands in a procedure. |