Hello all!
I was wondering why the gambit interpreter complains about loading multiple times an object file (i.e. a compile .o1 file). It is pretty annoying not being able to reload a file that loads its required modules... :(
What should I do instead? Load the requirements manually in the repl? This is not very convienient :( I could also just load the source file (load "module.scm") instead of the object file (load "module") but I would not benefit of compiled code perf...
Thanks!
David