> I can't seem to load an additional module in June98 Hugs1.4 without
> erasing the definitions of the current module.  For example:
>
> [example deleted]

What you're seeing is the effect of the module system: both modules
(and their definitions) are loaded but only one is in scope.

You can either:

1) Use the :module command to let you evaluate in the 
   scope of another module.

2) import one module into another so that definitions from
   both can be in scope at once

3) create a third module which imports both at once.

Alastair

Reply via email to