xxxxxxxxxx
// The setup function runs once at the
// beginning of the sketch (i.e. when you
// press the play button)
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
}
function draw() {
circle(mouseX, mouseY, 20);
}