For this program, you will need to add use the files found in example 2.
read filename
circle x y r
polygon n x_1 y_1 x_2 y_2 ... x_n y_n
Where n represents the number of end points and x_k,y_k is endpoint k.
filledpolygon n x_1 y_1 x_2 y_2 ... x_n y_n
Where n represents the number of end points and x_k,y_k is endpoint k.
fill x y c
which fills an area 4 connected to x,y with color c. Any 4-connected area
to x,y with the same original color should be filled. It is an error to fill
an area with it's current color.
Assume 1 = white and 0 = black.
clear cwhere c represents the color to clear the screen to. Assume 1 = white and 0 = black.