X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=docs%2Fusers_guide%2Fghci.xml;h=299b1e5bb28477e8a59d4e3317b008ecacb1d3d3;hp=c5b5f7c19fd7aabb30d22d216350ad03fefd6d1c;hb=087fc5a777f18ef6fa488d168cdf18ef8a22f374;hpb=d292dd0a5a98a6b114b7e446662c41bc5314104f diff --git a/docs/users_guide/ghci.xml b/docs/users_guide/ghci.xml index c5b5f7c..299b1e5 100644 --- a/docs/users_guide/ghci.xml +++ b/docs/users_guide/ghci.xml @@ -616,6 +616,41 @@ Prelude IO> + <literal>:module</literal> and + <literal>:load</literal> + + It might seem that :module and + :load do similar things: you can use both + to bring a module into scope. However, there is a clear + difference. GHCi is concerned with two sets of modules: + + + + The set of modules that are + currently loaded. This set is + modified + by :load, :add + and :reload. + + + + The set of modules that are currently in + scope at the prompt. This set is modified + by :module, and it is also set + automatically + after :load, :add, + and :reload. + + + + You cannot add a module to the scope if it is not + loaded. This is why trying to + use :module to load a new module results + in the message “module M is not + loaded”. + + + Qualified names To make life slightly easier, the GHCi prompt also