MCPcopy Index your code
hub / github.com/processing/processing / print

Method print

core/src/processing/core/PApplet.java:4140–4143  ·  view source on GitHub ↗

( begin auto-generated from print.xml ) Writes to the console area of the Processing environment. This 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 for each call to the function. In

(byte what)

Source from the content-addressed store, hash-verified

4138 * @see PApplet#join(String[], char)
4139 */
4140 static public void print(byte what) {
4141 System.out.print(what);
4142 System.out.flush();
4143 }
4144
4145 static public void print(boolean what) {
4146 System.out.print(what);

Callers 1

printlnMethod · 0.95

Calls 4

printMethod · 0.65
flushMethod · 0.45
appendMethod · 0.45
toStringMethod · 0.45

Tested by

no test coverage detected