xxxxxxxxxx
18
function setup() {
createCanvas(500, 400);
}
function draw() {
background(0,220,210);
stroke(220,0,0);
strokeWeight(40);
line(0,0,500,400);
fill(0,200,50);
noStroke()
ellipse(250,200,300,200);
fill(0,0,100)
rect(350,150,50,50)
}