xxxxxxxxxx
22
function setup() {
createCanvas(800, 600);
}
function draw() {
background(13, 234, 235);
line(0, 0, 800, 600);
strokeWeight(50);
stroke(255, 0, 0);
push();
noStroke();
fill(0, 200, 02);
ellipse(400, 300, 380, 290);
pop();
push();
noStroke();
fill(3, 0, 128);
rect(540, 260, 50, 50);
pop();
}