// creating shapes

fill (255, 0, 0);
stroke (0, 245, 50); 
ellipse (25, 50, 40, 30);
size (200, 200);



// Here I attempt to create a triangle
stroke (10);
fill (90, 20, 95);
triangle (100, 20, 90, 180, 160, 200);

// I am creating a rectangle

fill ( 0, 50, 0, 200);
rectMode (CENTER);
rect (75, 100, 100, 100);
