function setup() { createCanvas(600, 600); } function draw() { background(200, 80, 80); m = millis(); fill(77, 50, 200) strokeWeight(0) ellipse(mouseY, 30, mouseX) textSize(32*m) fill(255) text("Hello World!", mouseY, mouseX) ; fill(80, 170, 19) ellipse(mouseX, 80, mouseY) }