xxxxxxxxxx
18
function setup() {
createCanvas(600, 400);
}
function draw() {
background(220);
fill("red");
stroke("black");
strokeWeight(5);
circle(width/2, height/2, 100);
fill("purple");
stroke("black");
strokeWeight(4);
circle(width/2 + 100, height/2, 30);
}