// Rodriguez 112714: test pgm// size(300,300); //size of screen shown// fill(100,150,10); rect(100,100,150,150); //color and side and postion of rectangle// fill(120,250,0); ellipse(150,150,150,150); //colr and size of ellipse// fill(0,0,0); textSize(22); text("hello", 150,150); //color and size and text// line(150,150,100,200); line(160,150,110,200); line(185,150,135,200); line(178,150,128,200);