xxxxxxxxxx
30
function setup() {
createCanvas(400, 400);
}
function draw() {
background(0);
add(mouseX, mouseY);
// show sum
fill('pink');
textSize(100);
textFont('open sans');
text(x, width/3, height/2);
}
function add(a, b) {
x= a + b;
console.log(a + b);
}