print #handle, "north"

This command sets the current direction to 270 (north).  Zero degrees points to the right (east), 90 points down (south), and 180 points left (west).

print #handle, "place X Y"

This command positions the pen at X Y.  No graphics will be drawn, even if the pen is DOWN.

print #handle, "turn A"

This command causes the drawing pen to turn from the current direction, using angle A and adding it to the current direction.  A can be positive or negative.

print #handle, "posxy xVar yVar"

Assigns pen's current position to xVar & yVar.




