xxxxxxxxxx
29
function setup() {
createCanvas(700, 600);
}
function draw() {
background(150, 0, 150);
fill("green");
rect(250, 200, 200, 200);
fill("pink");
circle(120, 100, 100);
fill("yellow");
arc(450, 75, 200, 200, 100, 20);
line(0, 0, 700, 600);
line(700, 0, 0, 600);
line(350, 0, 350, 600);
line(0, 300, 700, 300);
fill(1);
textSize(100);
text("hello", 30, 300);
textSize(150);
text("💡", 275, 350);
circle(100,)
}