SketchBook

function setup(){ 
createCanvas(700,700);
}
function draw(){
background(255,255,255);
point(350,350);
fill(230,200,100);
line(320,250,104,340);
strokeWeight(20 );
stroke(100,0,0);
fill(200,250,10);
triangle(160,430,300,150,100,20);
fill(0,100,0);
rect(500,1,134,200);
fill(0,200,100);
ellipse(90,90,90);
fill(100,0,100,random(90,90));
}