mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 21:59:20 +01:00
14 lines
176 B
Plaintext
Executable File
14 lines
176 B
Plaintext
Executable File
static final boolean DEBUG = true;
|
|
|
|
void setup() {
|
|
MyClass x = new MyClass();
|
|
}
|
|
|
|
public class MyClass {
|
|
public MyClass() {
|
|
if (DEBUG) println("Debug");
|
|
}
|
|
}
|
|
|
|
|