xxxxxxxxxx
18
var test1 = 0;
function setup() {
createCanvas(1000, 1000);
background (255)
}
function draw() {
if (mouseX > 500){
noLoop();
}
createCanvas(1000, 1000);
background (255)
textSize(15)
test1++;
text(test1,100,100)
}