SketchBook

function setup() {
createCanvas(700,700);
}
function draw() {
background(255,255,255);
point(500,200);
line(300,200,100,400);
stroke(0,255,255);
triangle(300,566,250,675,300,700);
fill(255,127,80,random(0,300));
ellipse(345,300,40);
fill(255,105,180,random(0,300));
rect(435,534,250,123);
fill(255,105,180,(0,500));
strokeWeight(20);
stroke(0,255,255);
fill(255,255,random(0,300));
}