I press run but nothing happens

edited October 2013 in Using Processing

I've followed the instructions on the troubleshooting, but i can not figure out why my programs does not run. I've even tried simple codes like these:

void setup() {
  size(480, 120);
}

void draw() {
  if (mousePressed) {
    fill(0);
  } else {
    fill(255);
  }
  ellipse(mouseX, mouseY, 80, 80);
}

but nothing works I do not even get an error.

Answers

Sign In or Register to comment.