xxxxxxxxxx
22
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
stroke('red');
strokeWeight(10);
fill('white');
circle(200,200,200);
stroke('blue');
strokeWeight(5);
fill('white');
circle(200,200,150);
noStroke();
fill('yellow');
circle(200,200,100)
}