xxxxxxxxxx
22
function setup() {
createCanvas(400, 400);
//create background
background(200,250,100)
let large =20;
//drawings
circle(50,50,large);
square(60,60,large);
//coloring
fill(0,0,0);
//creating an ellipse
stroke(255,0,0); //colors the outline of a shape
ellipse(100,90,70,large);
//create a point
point(150,60);
}