//My 0th program -- Practice // Michael DiPrimo ---- CST 112 size(500,500); //screen size line( 50, 50, 100, 60); point(80,80); background(100,100,50); // Draw some shapes //triangle(30,30,5,40,80,90); rectMode( CENTER ); fill(0,0,60); ellipse(120,140,150,150); ellipse(300,140,150,150); fill(0,50,0); ellipse(120,130,20,45); ellipse(300,140,30,45); fill(40,40,100); textSize(40); text("HELLLLLLLLO WORLD!", 30,50);