Modify a text file: $/x130c.pde
$/x130c.pde
//x130c //Jose Olvera Pereira //test: First example of coding //Increase the size size(500, 500); //Change color of background background(195, 0, 0); //Make a slanted line on top left line(100, 50, 200, 100); //Make a slanted line on top right line(300, 100, 200, 50); //Make a slanted line on bottom left line(200, 300, 100, 250); //Create a rectangle rect(200, 100, 100, 200); ellipse(100, 100, 100, 100);