Write in the text output

print expression
(print expression1 expression2 ...)

Writes in the text output the text representation of the expression (or optionally multiple expressions). Each data type used in POOL has its human readable text representation, e.g. name in case of a turtle-object, "bitmapXxY" in case of an image.

Example:

"l := [a b c]
"o := turtleimg
print "word
print sqrt 2
print this
(print :l :o)

Output:

word
1.4142135623731
first
[a b c] bitmap27x27

See also:

Table of Content