RE: resetting in ghci

2002-04-30 Thread Simon Marlow
> Simon Marlow writes > > > :load with no arguments will unload all the currently > loaded modules and > > bindings. > > (so, the values go to garbage, and memory will be recovered?) All the memory will be recovered except for object files (it turns out to be difficult to do this safely, so

Re: resetting in ghci

2002-04-30 Thread Serge D. Mechveliani
Ty my > > Does ghci have a command of clearing > > out of all the currently defined values > > (like x set by `let x = 1') ? > > What about un-loading modules? > > Does the user need to exit and re-run ghci in order to reset the > > created environment? > > Such situation is n

RE: resetting in ghci

2002-04-30 Thread Simon Marlow
> Dear GHC, > > Does ghci have a command of clearing > out of all the currently defined values > (like x set by `let x = 1') ? > What about un-loading modules? > Does the user need to exit and re-run ghci in order to reset the > created environment? > Such situation is not a t