xxxxxxxxxx
15
function setup() {
createCanvas(512, 384);
background(45, 255, 254);
}
function draw() {
stroke(244, 13, 26);
strokeWeight(35);
line(0,0, 512, 384);
fill(30, 198, 34);
noStroke()
ellipse(256, 192, 260, 200);
fill(2, 12, 126);
rect(354, 160, 32, 32);
}