//Shapes day 2
//Ian Goldstein


size(780,340);
background(255,127,127);
fill(0,255,0);          //green fill on circle  
circle(340,170, 100); 
fill(255,0,0);         // red fill on square
stroke(5);             //stroke on square
square(50,50,50); 
fill(0,0,0);          // black fill on text
text("draw some shapes",  340, 