Modify a text file: $/Project_0.pde
$/Project_0.pde
//Build house with spaceship hovering past it and a moon int xPos=200 size(600,600); background(0,0,106); fill(102,102,102); rect(0,400,600,200); //house fill(0,0,0); rect(200,300,150,100); fill(100,0,200); triangle(200,300,280,160,350,300); //spaceship void setup() { size(100,60); smooth(); background(0); noStroke(); } void draw() { fill(204,204,204); ellipse(500,100,100,60); }