( 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)
| 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); |