unexpected token: import
in
Programming Questions
•
8 months ago
I'm using Processing 2.0b7 outside of the IDE and I cannot get around the error message:
unexpected token: import
My code is:
- import java.util.*
- void setup() {
- size(640,480);
- background(255);
- generator = new Random();
- }
- void draw() {
- }
processing-java.exe --sketch="c:/chhenning/processing-2.0b7/sketches/gaussian_distribution/" --output="c:/chhenning/processing-2.0b7/output/gaussian_distribution" --force --run
What am I missing?
Thanks,
Christian
1