Re: Unload Module?
"Neil Mitchell" <[email protected]> Sat, 9 Dec 2006 21:27:35 +0000
| Newsgroups | gmane.comp.lang.haskell.hugs.user |
|---|---|
| Message-ID | <[email protected]> |
Hi Dave, > Is there any way to unload a module, > effectively undoing the loading of that module? ":load", or abbreviated to ":l" (without the quotes in both cases) will load the empty module into Scope, so that's probably what you are after. Thanks Neil