Hi Guys, Im trying to make a house and my code isn’t running. Can someone please tell me why?
This is the code:
void setup()
{
size(200, 200);
background(255);
smooth();
}
void draw ()
{
fill(#1E4609);
rect (0, 500, 800, 600);
fill (#E6F2E8);
ellipse (240, 80, 100, 50);
ellipse (200, 100, 100, 50);
ellipse (220, 150, 100, 50);
fill(#EBF233);
ellipse(700, 75, 75, 75);
}
{
fill(#714B11);
rect (98, 388, 250, 125);
fill (#837C71);
rect (131, 420, 50, 50);
}
Thanks!