mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 13:49:18 +01:00
32 lines
651 B
Plaintext
32 lines
651 B
Plaintext
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 bug400g extends PApplet {
|
|
|
|
////
|
|
public void setup(){
|
|
size(100,100);
|
|
|
|
if(true){
|
|
}
|
|
else{ // Syntax error on token "else", } expected
|
|
}
|
|
}
|
|
static public void main(String args[]) {
|
|
PApplet.main(new String[] { "--bgcolor=null", "bug400g" });
|
|
}
|
|
}
|