xxxxxxxxxx
17
function setup() {
createCanvas(800, 800);
}
function draw() {
background(220);
//for loop runs until i (initialised as 0) reaches 300, when 300 reached its stops.
//i is assigned to the X axis of the ellipse
for(var i = 0; i < 300; i++);{
}
ellipse(i, 400, 25, 25);
}