MCPcopy Index your code
hub / github.com/benfry/processing4 / print

Method print

core/src/processing/core/PApplet.java:3731–3734  ·  view source on GitHub ↗

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. The companion function println() works like print() , but creates a new line of text fo

(byte what)

Source from the content-addressed store, hash-verified

3729 * @see PApplet#join(String[], char)
3730 */
3731 static public void print(byte what) {
3732 System.out.print(what);
3733 System.out.flush();
3734 }
3735
3736 static public void print(boolean what) {
3737 System.out.print(what);

Callers 1

printlnMethod · 0.95

Calls 3

printMethod · 0.65
flushMethod · 0.45
appendMethod · 0.45

Tested by

no test coverage detected