xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(80, 76, 54);
}
let x = 0;
let y = 9;
let t = 0;
function draw() {
background (45, 99, 200);
if(x>windowWidth) {
x=0;
}
if(y>windowHeight) {
y=0;
}
ellipse(x, y, 25, 25);
x = x+9;
y = y+9;
}