Yanbin Zhang <yanbinzh...@tamu.edu> writes: > Hi, > > I guess you need to tell GUILE where to find your module before you can load > it. GUILE has some standard places where it will look for modules. If your > module is not there, then you need to add the path so > that GUILE can find it. There are several ways to do this. One is to use > "add-to-load-path" as you did. Another would be setting up some environment > variable so that a certain path is added. You can find > more detailed information in the manual.
Thank you. But can't I recover from a previous `use-modules' that I evaluated before adding the module's path to `%load-path'? In an interactive session I make this error sometimes and up until now I've been restarting the REPL. Unfortunately this makes me lose the state that I was in.