xxxxxxxxxx
21
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
textSize(32);
fill('red');
noStroke();
circle(50, 50, 50);
fill('black');
fill('white');
text('A', 50, 50);
fill('black');
text('B', 100, 50);
text('Q', 150, 50);
text('X', 50, 100);
}