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