Name

print

Description The print() function writes to the console area, the black rectangle at the bottom of the Processing environment. This function is often helpful for looking at the data a program is producing.

Using print() on an object will output a string representation of that object, as determined by its internal __str__ and __repr__ methods (more information here).

In R Mode, print() and println() are functionally identical.
Syntax
print(what)
Parameters
whatdata to print to console
Related PrintWriter_print
Creative Commons License