draw.ss provides a miniscule collection of
graphics functions:
clear- operations for each
draw- operation. The arguments are the same.
draw.ss and execute:
> (start 500 500)
> (draw-solid-disk (make-posn 100 100) 3 RED)
true
> (clear-solid-disk (make-posn 100 100) 3)
true
> (stop)
>