Bouncing Circle: Make a circle

⌨️ Add a circle at x: 0, y: 200 with a diameter of 30

function draw() {
  background(220);
  
  circle(20, 200, 30); // Remember: circle(x, y, diameter)
}

Next up...

Bouncing Circle: Make it move