mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 13:49:18 +01:00
36 lines
708 B
Plaintext
Executable File
36 lines
708 B
Plaintext
Executable File
import processing.core.*;
|
|
|
|
import java.applet.*;
|
|
import java.awt.Dimension;
|
|
import java.awt.Frame;
|
|
import java.awt.event.MouseEvent;
|
|
import java.awt.event.KeyEvent;
|
|
import java.awt.event.FocusEvent;
|
|
import java.awt.Image;
|
|
import java.io.*;
|
|
import java.net.*;
|
|
import java.text.*;
|
|
import java.util.*;
|
|
import java.util.zip.*;
|
|
import java.util.regex.*;
|
|
|
|
public class bug427g extends PApplet {
|
|
|
|
static final boolean DEBUG = true;
|
|
|
|
public void setup() {
|
|
MyClass x = new MyClass();
|
|
}
|
|
|
|
public class MyClass {
|
|
public MyClass() {
|
|
if (DEBUG) println("Debug");
|
|
}
|
|
}
|
|
|
|
|
|
static public void main(String args[]) {
|
|
PApplet.main(new String[] { "--bgcolor=null", "bug427g" });
|
|
}
|
|
}
|