How can I unload a module in REPL?

Can I unload a module in a REPL session after using or import it? Is there a function that works like the :module - <module name> command in Haskell’s GHCi?

No, once a module is loaded it is loaded.

1 Like