You are on page 1of 1

function setup() {

createCanvas(400, 400);

background(250);

x=0

frameRate(10);

function draw() {

for (let i=0; i<100;i++);

fill(250);

stroke(20);

ellipse(10+x,10+x,100, 100);

x=x+20

You might also like