From: Ken A. <kan...@bb...> - 2003-03-07 16:16:02
|
Some questions about modules. ? is there a way to export symbols? For example, in the elf/future.scm i wanted to export future, future?, determined?, touch, and i wanted to have the other procedures not show up in the user's environment. Rather than loading a module and seeing the exported symbols, i have to explictly import it with a prefix say, "f:". Then i either have to say (f:future x) or (define future f:future) This doesn't seem right. |