diff options
author | amsay@amsay.net <unknown> | 2010-06-25 03:26:32 +0000 |
---|---|---|
committer | amsay@amsay.net <unknown> | 2010-06-25 03:26:32 +0000 |
commit | de1a1f9f882cf1a5c81c4a152edc001aafd3f8a3 (patch) | |
tree | e8eb34a23fd46834a5702274ea9abf44f5270409 /docs | |
parent | 8582fce6b6a97fcb5842293866e236fc12cf58c3 (diff) | |
download | haskell-de1a1f9f882cf1a5c81c4a152edc001aafd3f8a3.tar.gz |
trac #2362 (full import syntax in ghci)
'import' syntax is seperate from ':module' syntax
Diffstat (limited to 'docs')
-rw-r--r-- | docs/users_guide/ghci.xml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/users_guide/ghci.xml b/docs/users_guide/ghci.xml index 6e54ace778..1ff5ffd4cb 100644 --- a/docs/users_guide/ghci.xml +++ b/docs/users_guide/ghci.xml @@ -589,10 +589,12 @@ hello Prelude IO> </screen> - <para>(Note: you can use <literal>import M</literal> as an - alternative to <literal>:module +M</literal>, and + <para>(Note: you can use conventional + haskell <literal>import</literal> syntax as + well, but this does not support + <literal>*</literal> forms). <literal>:module</literal> can also be shortened to - <literal>:m</literal>). The full syntax of the + <literal>:m</literal>. The full syntax of the <literal>:module</literal> command is:</para> <screen> |