xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
}
let x=0;
let y=10;
let t=0;
function draw() {
background(0,0,255);
if(x>windowWidth){
x=0;}
if(y>windowHeight){
y=0;}
ellipse(x, y, 70, 70);
t++;
x=x+10;
y=y+10;
textSize(80);
text(t + "s", 40,100);
}