WIDTH
Syntax WIDTH
 
Explanation WIDTH reports the pen width of the first active turtle. The pen width can be a number between 1 and 99. The pen width is set using the command SETWIDTH.

If more than one turtle is active, the pen width of these turtles may be interrogated with WIDTH and the ASK or EACH command.
 

Examples DRAW 
WIDTH 
Result: 1 
TELL [0 1 2 3 4] 
SETWIDTH 5 
EACH [PRINT WIDTH] 




TopIndex