gsc foo.scm --> foo.o1
my system loads in foo (foo.o1)
changes to foo.scm; gsc foo.scm -> foo.o2
when I try to reload foo (foo.o2), it complains that it can't load an object file twice

is there some way I can unload foo.o1 ?

Thanks!