SketchBook

function setup(){
createCanvas(700,700)
}
function draw(){
background(255,255,255)
strokeWeight(30);
point(70,70)
stroke(255,255,0)
line(100,200,0,0)
stroke(0)
fill(0,255,0);
rect(200,200,100,100)
fill(0,255,255);
ellipse(200,500,150)
fill(0,0,255)
triangle(500,600,400,300,600,600)


}