xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
score = 0;
}
function draw() {
ellipse(width/2, height/2, 200);
text(score, width/2, height/2);
}
function mouseClicked(){
if(width/2 - mouseX < 200 && height/2 - mouseY < 200){
score++;
}
}