2009/1/20 Panicz Maciej Godek <[email protected]>: > Hi, I've been trying to move some of my code into > loadable guile modules. I made a directory "modules" > in my project tree and moved the module in there. > > I ran into some problems. Here's how I load the > module: > (set! %load-path (cons "." %load-path)) > (load-module (modules goose)) > At this point, guile signals an error (unbound variable).
Please try `use-modules' instead of `load-module'.
Neil
