Get a turtle
turtle name
#name
POOL allows for programming concurrent tasks of many turtles. Each turtle has its unique name. Turtles can be
accessed with this name in case they are not available through any variable. In analogy to the
thing
instruction, there is a single-character abbreviation of the
turtle
instruction: symbol #
, which requires a
name constant at the input.
Example:
Commands should be issued sequentially in the command line.
make "t (newt)
tto :t
print who
tto #first
print who
Output:
t1
first
See also:
Turtle - object
Table of Content