///// my first CST112 program
///// Gershom Raymundo

size(580, 580);

background(50);

fill( 255 );

text( "Hello World", 33,67);

fill( 189);
stroke( 255 );           //change the color of the edge of the rectangle
strokeWeight(12);
rect( 100 , 89, 52 , 45 );
