//Title: In-class exercises:make some shapes // Author : Val Jeudy //Date: Sept 5, 2014 size(500,500); // size of the screen background(200,200,255); //makes the background yellow. fill(255,0,0); textSize(30); //size of the text text ("Hello World",200,45); //makes his head stroke(0,0,255); fill(0,255,0); rect(60,115,50,200); ellipseMode(CORNER); ellipse(50,50,70,70); fill(255); //blue triangle(25,25,69,66,59,59);