f7a6e06f54f48c51a5a233caa97df8e260ac8973
[ghc-hetmet.git] / ghc / docs / users_guide / ghci.sgml
1 <chapter id="ghci">
2   <title>Using GHCi</title>
3   <indexterm><primary>GHCi</primary></indexterm>
4   <indexterm><primary>interpreter</primary><see>GHCi</see></indexterm>
5   <indexterm><primary>interactive</primary><see>GHCi</see></indexterm>
6   
7   <para>GHCi<footnote>
8       <para>The &lsquo;i&rsquo; stands for &ldquo;Interactive&rdquo;</para>
9     </footnote>
10   is GHC's interactive environment, in which Haskell expressions can
11   be interactively evaluated and programs can be interpreted.  If
12   you're famililar with <ulink url="http://www.haskell.org/hugs/">Hugs</ulink><indexterm><primary>Hugs</primary>
13   </indexterm>, then you'll be right at home with GHCi.  However, GHCi
14   also has support for interactively loading compiled code, as well as
15   supporting all<footnote><para>except <literal>foreign export</literal>, at the moment</para>
16   </footnote> the language extensions that GHC provides.</para>
17   <indexterm><primary>FFI</primary><secondary>GHCi support</secondary></indexterm>
18   <indexterm><primary>Foreign Function Interface</primary><secondary>GHCi support</secondary></indexterm>
19
20   <sect1>
21     <title>Introduction to GHCi</title>
22
23     <para>Let's start with an example GHCi session.  You can fire up
24     GHCi with the command <literal>ghci</literal>:</para>
25
26 <screen>
27 $ ghci
28    ___         ___ _
29   / _ \ /\  /\/ __(_)
30  / /_\// /_/ / /  | |      GHC Interactive, version 5.04, for Haskell 98.
31 / /_\\/ __  / /___| |      http://www.haskell.org/ghc/
32 \____/\/ /_/\____/|_|      Type :? for help.
33
34 Loading package base ... linking ... done.
35 Loading package haskell98 ... linking ... done.
36 Prelude> 
37 </screen>
38
39     <para>There may be a short pause while GHCi loads the prelude and
40     standard libraries, after which the prompt is shown.  If we follow
41     the instructions and type <literal>:?</literal> for help, we
42     get:</para>
43
44 <screen>
45  Commands available from the prompt:
46
47    &lt;stmt&gt;                     evaluate/run &lt;stmt&gt;
48    :add &lt;filename&gt; ...        add module(s) to the current target set
49    :browse [*]&lt;module&gt;        display the names defined by &lt;module&gt;
50    :cd &lt;dir&gt;                  change directory to &lt;dir&gt;
51    :def &lt;cmd&gt; &lt;expr&gt;          define a command :&lt;cmd&gt;
52    :help, :?                  display this list of commands
53    :info [&lt;name&gt; ...]         display information about the given names
54    :load &lt;filename&gt; ...       load module(s) and their dependents
55    :module [+/-] [*]&lt;mod&gt; ... set the context for expression evaluation
56    :reload                    reload the current module set
57
58    :set &lt;option&gt; ...          set options
59    :set args &lt;arg&gt; ...        set the arguments returned by System.getArgs
60    :set prog &lt;progname&gt;       set the value returned by System.getProgName
61
62    :show modules              show the currently loaded modules
63    :show bindings             show the current bindings made at the prompt
64
65    :type &lt;expr&gt;               show the type of &lt;expr&gt;
66    :undef &lt;cmd&gt;               undefine user-defined command :&lt;cmd&gt;
67    :unset &lt;option&gt; ...        unset options
68    :quit                      exit GHCi
69    :!&lt;command&gt;                run the shell command &lt;command&gt;
70
71  Options for `:set' and `:unset':
72
73     +r                 revert top-level expressions after each evaluation
74     +s                 print timing/memory stats after each evaluation
75     +t                 print type after evaluation
76     -&lt;flags&gt;           most GHC command line flags can also be set here
77                          (eg. -v2, -fglasgow-exts, etc.)
78 </screen>
79
80     <para>We'll explain most of these commands as we go along.  For
81     Hugs users: many things work the same as in Hugs, so you should be
82     able to get going straight away.</para>
83
84     <para>Haskell expressions can be typed at the prompt:</para>
85     <indexterm><primary>prompt</primary><secondary>GHCi</secondary>
86   </indexterm>
87
88 <screen>
89 Prelude> 1+2
90 3
91 Prelude> let x = 42 in x / 9
92 4.666666666666667
93 Prelude> 
94 </screen>
95
96     <para>GHCi interprets the whole line as an expression to evaluate.
97     The expression may not span several lines - as soon as you press
98     enter, GHCi will attempt to evaluate it.</para>
99   </sect1>
100
101   <sect1>
102     <title>Loading source files</title>
103
104     <para>Suppose we have the following Haskell source code, which we
105     place in a file <filename>Main.hs</filename>:</para>
106
107 <programlisting>
108 main = print (fac 20)
109
110 fac 0 = 1
111 fac n = n * fac (n-1)
112 </programlisting>
113
114     <para>You can save <filename>Main.hs</filename> anywhere you like,
115     but if you save it somewhere other than the current
116     directory<footnote><para>If you started up GHCi from the command
117     line then GHCi's current directory is the same as the current
118     directory of the shell from which it was started.  If you started
119     GHCi from the &ldquo;Start&rdquo; menu in Windows, then the
120     current directory is probably something like
121     <filename>C:\Documents and Settings\<replaceable>user
122     name</replaceable></filename>.</para> </footnote> then we will
123     need to change to the right directory in GHCi:</para>
124
125 <screen>
126 Prelude> :cd <replaceable>dir</replaceable>
127 </screen>
128
129     <para>where <replaceable>dir</replaceable> is the directory (or
130     folder) in which you saved <filename>Main.hs</filename>.</para>
131
132     <para>To load a Haskell source file into GHCi, use the
133     <literal>:load</literal> command:</para>
134     <indexterm><primary><literal>:load</literal></primary></indexterm>
135
136 <screen>
137 Prelude> :load Main
138 Compiling Main             ( Main.hs, interpreted )
139 Ok, modules loaded: Main.
140 *Main>
141 </screen>
142
143     <para>GHCi has loaded the <literal>Main</literal> module, and the
144     prompt has changed to &ldquo;<literal>*Main></literal>&rdquo; to
145     indicate that the current context for expressions typed at the
146     prompt is the <literal>Main</literal> module we just loaded (we'll
147     explain what the <literal>*</literal> means later in <xref
148     linkend="ghci-scope">).  So we can now type expressions involving
149     the functions from <filename>Main.hs</filename>:</para>
150
151 <screen>
152 *Main> fac 17
153 355687428096000
154 </screen>
155
156     <para>Loading a multi-module program is just as straightforward;
157     just give the name of the &ldquo;topmost&rdquo; module to the
158     <literal>:load</literal> command (hint: <literal>:load</literal>
159     can be abbreviated to <literal>:l</literal>).  The topmost module
160     will normally be <literal>Main</literal>, but it doesn't have to
161     be.  GHCi will discover which modules are required, directly or
162     indirectly, by the topmost module, and load them all in dependency
163     order.</para>
164
165     <sect2 id="ghci-modules-filenames">
166       <title>Modules vs. filenames</title>
167       <indexterm><primary>modules</primary><secondary>and filenames</secondary></indexterm>
168       <indexterm><primary>filenames</primary><secondary>of modules</secondary></indexterm>
169       
170       <para>Question: How does GHC find the filename which contains
171       module <replaceable>M</replaceable>?  Answer: it looks for the
172       file <literal><replaceable>M</replaceable>.hs</literal>, or
173       <literal><replaceable>M</replaceable>.lhs</literal>.  This means
174       that for most modules, the module name must match the filename.
175       If it doesn't, GHCi won't be able to find it.</para>
176
177       <para>There is one exception to this general rule: when you load
178       a program with <literal>:load</literal>, or specify it when you
179       invoke <literal>ghci</literal>, you can give a filename rather
180       than a module name.  This filename is loaded if it exists, and
181       it may contain any module you like.  This is particularly
182       convenient if you have several <literal>Main</literal> modules
183       in the same directory and you can't call them all
184       <filename>Main.hs</filename>.</para>
185
186       <para>The search path for finding source files is specified with
187       the <option>-i</option> option on the GHCi command line, like
188       so:</para>
189 <screen>ghci -i<replaceable>dir<subscript>1</subscript></replaceable>:...:<replaceable>dir<subscript>n</subscript></replaceable></screen>
190
191       <para>or it can be set using the <literal>:set</literal> command
192       from within GHCi (see <xref
193       linkend="ghci-cmd-line-options">)<footnote><para>Note that in
194       GHCi, and <option>&ndash;&ndash;make</option> mode, the <option>-i</option>
195       option is used to specify the search path for
196       <emphasis>source</emphasis> files, whereas in standard
197       batch-compilation mode the <option>-i</option> option is used to
198       specify the search path for interface files, see <xref
199       linkend="options-finding-imports">.</para> </footnote></para>
200
201       <para>One consequence of the way that GHCi follows dependencies
202       to find modules to load is that every module must have a source
203       file.  The only exception to the rule is modules that come from
204       a package, including the <literal>Prelude</literal> and standard
205       libraries such as <literal>IO</literal> and
206       <literal>Complex</literal>.  If you attempt to load a module for
207       which GHCi can't find a source file, even if there are object
208       and interface files for the module, you'll get an error
209       message.</para>
210     </sect2>
211
212     <sect2>
213       <title>Making changes and recompilation</title>
214       <indexterm><primary><literal>:reload</literal></primary></indexterm>
215
216       <para>If you make some changes to the source code and want GHCi
217       to recompile the program, give the <literal>:reload</literal>
218       command.  The program will be recompiled as necessary, with GHCi
219       doing its best to avoid actually recompiling modules if their
220       external dependencies haven't changed.  This is the same
221       mechanism we use to avoid re-compiling modules in the batch
222       compilation setting (see <xref linkend="recomp">).</para>
223     </sect2>
224   </sect1>
225
226   <sect1 id="ghci-compiled">
227     <title>Loading compiled code</title>
228     <indexterm><primary>compiled code</primary><secondary>in GHCi</secondary></indexterm>
229
230     <para>When you load a Haskell source module into GHCi, it is
231     normally converted to byte-code and run using the interpreter.
232     However, interpreted code can also run alongside compiled code in
233     GHCi; indeed, normally when GHCi starts, it loads up a compiled
234     copy of the <literal>base</literal> package, which contains the
235     <literal>Prelude</literal>.</para>
236
237     <para>Why should we want to run compiled code?  Well, compiled
238     code is roughly 10x faster than interpreted code, but takes about
239     2x longer to produce (perhaps longer if optimisation is on).  So
240     it pays to compile the parts of a program that aren't changing
241     very often, and use the interpreter for the code being actively
242     developed.</para>
243
244     <para>When loading up source files with <literal>:load</literal>,
245     GHCi looks for any corresponding compiled object files, and will
246     use one in preference to interpreting the source if possible.  For
247     example, suppose we have a 4-module program consisting of modules
248     A, B, C, and D.  Modules B and C both import D only,
249     and A imports both B & C:</para>
250 <screen>
251       A
252      / \
253     B   C
254      \ /
255       D
256 </screen>
257     <para>We can compile D, then load the whole program, like this:</para>
258 <screen>
259 Prelude> :! ghc -c D.hs
260 Prelude> :load A
261 Skipping  D                ( D.hs, D.o )
262 Compiling C                ( C.hs, interpreted )
263 Compiling B                ( B.hs, interpreted )
264 Compiling A                ( A.hs, interpreted )
265 Ok, modules loaded: A, B, C, D.
266 *Main>
267 </screen>
268
269     <para>In the messages from the compiler, we see that it skipped D,
270     and used the object file <filename>D.o</filename>.  The message
271     <literal>Skipping</literal> <replaceable>module</replaceable>
272     indicates that compilation for <replaceable>module</replaceable>
273     isn't necessary, because the source and everything it depends on
274     is unchanged since the last compilation.</para>
275
276     <para>At any time you can use the command 
277     <literal>:show modules</literal>
278     to get a list of the modules currently loaded
279     into GHCi:</para>
280
281 <screen>
282 *Main> :show modules
283 D                ( D.hs, D.o )
284 C                ( C.hs, interpreted )
285 B                ( B.hs, interpreted )
286 A                ( A.hs, interpreted )
287 *Main></screen>
288
289     <para>If we now modify the source of D (or pretend to: using Unix
290     command <literal>touch</literal> on the source file is handy for
291     this), the compiler will no longer be able to use the object file,
292     because it might be out of date:</para>
293
294 <screen>
295 *Main> :! touch D.hs
296 *Main> :reload
297 Compiling D                ( D.hs, interpreted )
298 Skipping  C                ( C.hs, interpreted )
299 Skipping  B                ( B.hs, interpreted )
300 Skipping  A                ( A.hs, interpreted )
301 Ok, modules loaded: A, B, C, D.
302 *Main> 
303 </screen>
304
305     <para>Note that module D was compiled, but in this instance
306     because its source hadn't really changed, its interface remained
307     the same, and the recompilation checker determined that A, B and C
308     didn't need to be recompiled.</para>
309
310     <para>So let's try compiling one of the other modules:</para>
311
312 <screen>
313 *Main> :! ghc -c C.hs
314 *Main> :load A
315 Compiling D                ( D.hs, interpreted )
316 Compiling C                ( C.hs, interpreted )
317 Compiling B                ( B.hs, interpreted )
318 Compiling A                ( A.hs, interpreted )
319 Ok, modules loaded: A, B, C, D.
320 </screen>
321
322     <para>We didn't get the compiled version of C!  What happened?
323     Well, in GHCi a compiled module may only depend on other compiled
324     modules, and in this case C depends on D, which doesn't have an
325     object file, so GHCi also rejected C's object file.  Ok, so let's
326     also compile D:</para>
327
328 <screen>
329 *Main> :! ghc -c D.hs
330 *Main> :reload
331 Ok, modules loaded: A, B, C, D.
332 </screen>
333
334     <para>Nothing happened!  Here's another lesson: newly compiled
335     modules aren't picked up by <literal>:reload</literal>, only
336     <literal>:load</literal>:</para>
337
338 <screen>
339 *Main> :load A
340 Skipping  D                ( D.hs, D.o )
341 Skipping  C                ( C.hs, C.o )
342 Compiling B                ( B.hs, interpreted )
343 Compiling A                ( A.hs, interpreted )
344 Ok, modules loaded: A, B, C, D.
345 </screen>
346
347     <para>HINT: since GHCi will only use a compiled object file if it
348     can sure that the compiled version is up-to-date, a good technique
349     when working on a large program is to occasionally run
350     <literal>ghc &ndash;&ndash;make</literal> to compile the whole project (say
351     before you go for lunch :-), then continue working in the
352     interpreter.  As you modify code, the new modules will be
353     interpreted, but the rest of the project will remain
354     compiled.</para>
355
356   </sect1>
357
358   <sect1>
359     <title>Interactive evaluation at the prompt</title>
360
361     <para>When you type an expression at the prompt, GHCi immediately
362     evaluates and prints the result.  But that's not the whole story:
363     if you type something of type <literal>IO a</literal> for some
364     <literal>a</literal>, then GHCi <emphasis>executes</emphasis> it
365     as an IO-computation, and doesn't attempt to print the
366     result:.</para>
367
368 <screen>
369 Prelude> "hello"
370 "hello"
371 Prelude> putStrLn "hello"
372 hello
373 </screen>
374
375     <para>What actually happens is that GHCi typechecks the
376     expression, and if it doesn't have an <literal>IO</literal> type,
377     then it transforms it as follows: an expression
378     <replaceable>e</replaceable> turns into 
379 <screen>     
380              let it = <replaceable>e</replaceable>;
381              print it
382 </screen>
383     which is then run as an IO-action.</para>
384
385     <para>Hence, the original expression must have a type which is an
386     instance of the <literal>Show</literal> class, or GHCi will
387     complain:</para>
388
389 <screen>
390 Prelude> id
391 No instance for `Show (a -> a)'
392 arising from use of `print'
393 in a `do' expression pattern binding: print it
394 </screen>
395
396     <para>The error message contains some clues as to the
397     transformation happening internally.</para>
398
399     <sect2 id="ghci-scope">
400       <title>What's really in scope at the prompt?</title> 
401
402       <para>When you type an expression at the prompt, what
403       identifiers and types are in scope?  GHCi provides a flexible
404       way to control exactly how the context for an expression is
405       constructed.  Let's start with the simple cases; when you start
406       GHCi the prompt looks like this:</para>
407
408 <screen>Prelude></screen>
409
410       <para>Which indicates that everything from the module
411       <literal>Prelude</literal> is currently in scope.  If we now
412       load a file into GHCi, the prompt will change:</para>
413
414 <screen>
415 Prelude> :load Main.hs
416 Compiling Main             ( Main.hs, interpreted )
417 *Main>
418 </screen>
419
420       <para>The new prompt is <literal>*Main</literal>, which
421       indicates that we are typing expressions in the context of the
422       top-level of the <literal>Main</literal> module.  Everything
423       that is in scope at the top-level in the module
424       <literal>Main</literal> we just loaded is also in scope at the
425       prompt (probably including <literal>Prelude</literal>, as long
426       as <literal>Main</literal> doesn't explicitly hide it).</para>
427
428       <para>The syntax
429       <literal>*<replaceable>module</replaceable></literal> indicates
430       that it is the full top-level scope of
431       <replaceable>module</replaceable> that is contributing to the
432       scope for expressions typed at the prompt.  Without the
433       <literal>*</literal>, just the exports of the module are
434       visible.</para>
435
436       <para>We're not limited to a single module: GHCi can combine
437       scopes from multiple modules, in any mixture of
438       <literal>*</literal> and non-<literal>*</literal> forms.  GHCi
439       combines the scopes from all of these modules to form the scope
440       that is in effect at the prompt.  For technical reasons, GHCi
441       can only support the <literal>*</literal>-form for modules which
442       are interpreted, so compiled modules and package modules can
443       only contribute their exports to the current scope.</para>
444
445       <para>The scope is manipulated using the
446       <literal>:module</literal> command.  For example, if the current
447       scope is <literal>Prelude</literal>, then we can bring into
448       scope the exports from the module <literal>IO</literal> like
449       so:</para>
450
451 <screen>
452 Prelude> :module +IO
453 Prelude,IO> hPutStrLn stdout "hello\n"
454 hello
455 Prelude,IO>
456 </screen>
457
458       <para>(Note: <literal>:module</literal> can be shortened to
459       <literal>:m</literal>). The full syntax of the
460       <literal>:module</literal> command is:</para>
461
462 <screen>
463 :module <optional>+|-</optional> <optional>*</optional><replaceable>mod<subscript>1</subscript></replaceable> ... <optional>*</optional><replaceable>mod<subscript>n</subscript></replaceable>
464 </screen>
465
466       <para>Using the <literal>+</literal> form of the
467       <literal>module</literal> commands adds modules to the current
468       scope, and <literal>-</literal> removes them.  Without either
469       <literal>+</literal> or <literal>-</literal>, the current scope
470       is replaced by the set of modules specified.  Note that if you
471       use this form and leave out <literal>Prelude</literal>, GHCi
472       will assume that you really wanted the
473       <literal>Prelude</literal> and add it in for you (if you don't
474       want the <literal>Prelude</literal>, then ask to remove it with
475       <literal>:m -Prelude</literal>).</para>
476
477       <para>The scope is automatically set after a
478       <literal>:load</literal> command, to the most recently loaded
479       "target" module, in a <literal>*</literal>-form if possible.
480       For example, if you say <literal>:load foo.hs bar.hs</literal>
481       and <filename>bar.hs</filename> contains module
482       <literal>Bar</literal>, then the scope will be set to
483       <literal>*Bar</literal> if <literal>Bar</literal> is
484       interpreted, or if <literal>Bar</literal> is compiled it will be
485       set to <literal>Prelude,Bar</literal> (GHCi automatically adds
486       <literal>Prelude</literal> if it isn't present and there aren't
487       any <literal>*</literal>-form modules).</para>
488
489       <para>With multiple modules in scope, especially multiple
490       <literal>*</literal>-form modules, it is likely that name
491       clashes will occur.  Haskell specifies that name clashes are
492       only reported when an ambiguous identifier is used, and GHCi
493       behaves in the same way for expressions typed at the
494       prompt.</para>
495
496       <sect3>
497         <title>Qualified names</title>
498
499         <para>To make life slightly easier, the GHCi prompt also
500         behaves as if there is an implicit <literal>import
501         qualified</literal> declaration for every module in every
502         package, and every module currently loaded into GHCi.</para>
503       </sect3>
504     </sect2>
505   
506     <sect2>
507       <title>Using <literal>do-</literal>notation at the prompt</title>
508       <indexterm><primary>do-notation</primary><secondary>in GHCi</secondary></indexterm>
509       <indexterm><primary>statements</primary><secondary>in GHCi</secondary></indexterm>
510       
511       <para>GHCi actually accepts <firstterm>statements</firstterm>
512       rather than just expressions at the prompt.  This means you can
513       bind values and functions to names, and use them in future
514       expressions or statements.</para>
515
516       <para>The syntax of a statement accepted at the GHCi prompt is
517       exactly the same as the syntax of a statement in a Haskell
518       <literal>do</literal> expression.  However, there's no monad
519       overloading here: statements typed at the prompt must be in the
520       <literal>IO</literal> monad.</para>
521
522       <para>Here's an example:</para>
523 <screen>
524 Prelude> x <- return 42
525 Prelude> print x
526 42
527 Prelude>
528 </screen>
529       <para>The statement <literal>x <- return 42</literal> means
530       &ldquo;execute <literal>return 42</literal> in the
531       <literal>IO</literal> monad, and bind the result to
532       <literal>x</literal>&rdquo;.  We can then use
533       <literal>x</literal> in future statements, for example to print
534       it as we did above.</para>
535
536       <para>Of course, you can also bind normal non-IO expressions
537       using the <literal>let</literal>-statement:</para>
538 <screen>
539 Prelude> let x = 42
540 Prelude> print x
541 42
542 Prelude>
543 </screen>
544       <para>An important difference between the two types of binding
545       is that the monadic bind (<literal>p <- e</literal>) is
546       <emphasis>strict</emphasis> (it evaluates <literal>e</literal>),
547       whereas with the <literal>let</literal> form, the expression
548       isn't evaluated immediately:</para>
549 <screen>
550 Prelude> let x = error "help!"
551 Prelude> print x
552 *** Exception: help!
553 Prelude>
554 </screen>
555       <para>Any exceptions raised during the evaluation or execution
556       of the statement are caught and printed by the GHCi command line
557       interface (for more information on exceptions, see the module
558       <literal>Control.Exception</literal> in the libraries
559       documentation).</para>
560
561       <para>Every new binding shadows any existing bindings of the
562       same name, including entities that are in scope in the current
563       module context.</para>
564
565       <para>WARNING: temporary bindings introduced at the prompt only
566       last until the next <literal>:load</literal> or
567       <literal>:reload</literal> command, at which time they will be
568       simply lost.  However, they do survive a change of context with
569       <literal>:module</literal>: the temporary bindings just move to
570       the new location.</para>
571
572       <para>HINT: To get a list of the bindings currently in scope, use the
573       <literal>:show bindings</literal> command:</para>
574
575 <screen>
576 Prelude> :show bindings
577 x :: Int
578 Prelude></screen>
579
580       <para>HINT: if you turn on the <literal>+t</literal> option,
581       GHCi will show the type of each variable bound by a statement.
582       For example:</para>
583       <indexterm><primary><literal>+t</literal></primary></indexterm>
584 <screen>
585 Prelude> :set +t
586 Prelude> let (x:xs) = [1..]
587 x :: Integer
588 xs :: [Integer]
589 </screen>
590
591     </sect2>
592
593     <sect2>
594       <title>The <literal>it</literal> variable</title>
595       <indexterm><primary><literal>it</literal></primary>
596       </indexterm>
597       
598       <para>Whenever an expression (or a non-binding statement, to be
599       precise) is typed at the prompt, GHCi implicitly binds its value
600       to the variable <literal>it</literal>.  For example:</para>
601 <screen>
602 Prelude> 1+2
603 3
604 Prelude> it * 2
605 6
606 </screen>
607
608       <para>This is a result of the translation mentioned earlier,
609       namely that an expression <replaceable>e</replaceable> is
610       translated to
611 <screen>     
612              let it = <replaceable>e</replaceable>;
613              print it
614 </screen>
615       before execution, resulting in a binding for
616       <literal>it</literal>.</para>
617
618       <para>If the expression was of type <literal>IO a</literal> for
619       some <literal>a</literal>, then <literal>it</literal> will be
620       bound to the result of the <literal>IO</literal> computation,
621       which is of type <literal>a</literal>.  eg.:</para>
622 <screen>
623 Prelude> Time.getClockTime
624 Prelude> print it
625 Wed Mar 14 12:23:13 GMT 2001
626 </screen>
627
628       <para>The corresponding translation for an IO-typed
629       <replaceable>e</replaceable> is
630 <screen>     
631              it <- <replaceable>e</replaceable>
632 </screen>
633       </para>
634
635       <para>Note that <literal>it</literal> is shadowed by the new
636       value each time you evaluate a new expression, and the old value
637       of <literal>it</literal> is lost.</para>
638
639     </sect2>
640   </sect1>
641
642   <sect1 id="ghci-invokation">
643     <title>Invoking GHCi</title>
644     <indexterm><primary>invoking</primary><secondary>GHCi</secondary></indexterm>
645     <indexterm><primary><option>&ndash;&ndash;interactive</option></primary></indexterm>
646
647     <para>GHCi is invoked with the command <literal>ghci</literal> or
648     <literal>ghc &ndash;&ndash;interactive</literal>.  One or more modules or
649     filenames can also be specified on the command line; this
650     instructs GHCi to load the specified modules or filenames (and all
651     the modules they depend on), just as if you had said
652     <literal>:load <replaceable>modules</replaceable></literal> at the
653     GHCi prompt (see <xref linkend="ghci-commands">).  For example, to
654     start GHCi and load the program whose topmost module is in the
655     file <literal>Main.hs</literal>, we could say:</para>
656
657 <screen>
658 $ ghci Main.hs
659 </screen>
660
661     <para>Most of the command-line options accepted by GHC (see <xref
662     linkend="using-ghc">) also make sense in interactive mode.  The ones
663     that don't make sense are mostly obvious; for example, GHCi
664     doesn't generate interface files, so options related to interface
665     file generation won't have any effect.</para>
666
667     <sect2>
668       <title>Packages</title>
669       <indexterm><primary>packages</primary><secondary>with GHCi</secondary></indexterm>
670
671       <para>Most packages (see <xref linkend="using-packages">) are
672       available without needing to specify any extra flags at all:
673       they will be automatically loaded the first time they are
674       needed.</para>
675
676       <para>For non-auto packages, however, you need to request the
677       package be loaded by using the <literal>-package</literal> flag:</para>
678
679 <screen>
680 $ ghci -package data
681    ___         ___ _
682   / _ \ /\  /\/ __(_)
683  / /_\// /_/ / /  | |      GHC Interactive, version 5.05, for Haskell 98.
684 / /_\\/ __  / /___| |      http://www.haskell.org/ghc/
685 \____/\/ /_/\____/|_|      Type :? for help.
686
687 Loading package base ... linking ... done.
688 Loading package haskell98 ... linking ... done.
689 Loading package lang ... linking ... done.
690 Loading package concurrent ... linking ... done.
691 Loading package readline ... linking ... done.
692 Loading package unix ... linking ... done.
693 Loading package posix ... linking ... done.
694 Loading package util ... linking ... done.
695 Loading package data ... linking ... done.
696 Prelude> 
697 </screen>
698
699       <para>The following command works to load new packages into a
700       running GHCi:</para>
701
702 <screen>
703 Prelude> :set -package <replaceable>name</replaceable>
704 </screen>
705
706       <para>But note that doing this will cause all currently loaded
707       modules to be unloaded, and you'll be dumped back into the
708       <literal>Prelude</literal>.</para>
709     </sect2>
710
711     <sect2>
712       <title>Extra libraries</title>
713       <indexterm><primary>libraries</primary><secondary>with GHCi</secondary></indexterm>
714       
715       <para>Extra libraries may be specified on the command line using
716       the normal <literal>-l<replaceable>lib</replaceable></literal>
717       option.  (The term <emphasis>library</emphasis> here refers to
718       libraries of foreign object code; for using libraries of Haskell
719       source code, see <xref linkend="ghci-modules-filenames">.) For
720       example, to load the &ldquo;m&rdquo; library:</para>
721
722 <screen>
723 $ ghci -lm
724 </screen>
725
726       <para>On systems with <literal>.so</literal>-style shared
727       libraries, the actual library loaded will the
728       <filename>lib<replaceable>lib</replaceable>.so</filename>.  GHCi
729       searches the following places for libraries, in this order:</para>
730
731       <itemizedlist>
732         <listitem>
733           <para>Paths specified using the
734           <literal>-L<replaceable>path</replaceable></literal>
735           command-line option,</para>
736         </listitem>
737         <listitem>
738           <para>the standard library search path for your system,
739           which on some systems may be overriden by setting the
740           <literal>LD_LIBRARY_PATH</literal> environment
741           variable.</para>
742         </listitem>
743       </itemizedlist>
744
745       <para>On systems with <literal>.dll</literal>-style shared
746       libraries, the actual library loaded will be
747       <filename><replaceable>lib</replaceable>.dll</filename>.  Again,
748       GHCi will signal an error if it can't find the library.</para>
749
750       <para>GHCi can also load plain object files
751       (<literal>.o</literal> or <literal>.obj</literal> depending on
752       your platform) from the command-line.  Just add the name the
753       object file to the command line.</para>
754     </sect2>
755
756   </sect1>
757
758   <sect1 id="ghci-commands">
759     <title>GHCi commands</title>
760
761     <para>GHCi commands all begin with
762     &lsquo;<literal>:</literal>&rsquo; and consist of a single command
763     name followed by zero or more parameters.  The command name may be
764     abbreviated, as long as the abbreviation is not ambiguous.  All of
765     the builtin commands, with the exception of
766     <literal>:unset</literal> and <literal>:undef</literal>, may be
767     abbreviated to a single letter.</para>
768
769     <variablelist>
770       <varlistentry>
771         <term><literal>:add</literal>
772         <replaceable>module</replaceable> ...</term>
773         <indexterm><primary><literal>:add</literal></primary></indexterm>
774         <listitem>
775           <para>Add <replaceable>module</replaceable>(s) to the
776           current <firstterm>target set</firstterm>, and perform a
777           reload.</para>
778         </listitem>
779       </varlistentry>
780
781       <varlistentry>
782         <term><literal>:browse</literal>
783         <optional><literal>*</literal></optional><replaceable>module</replaceable>
784         ...</term>
785         <indexterm><primary><literal>:browse</literal></primary>
786         </indexterm>
787         <listitem>
788           <para>Displays the identifiers defined by the module
789           <replaceable>module</replaceable>, which must be either
790           loaded into GHCi or be a member of a package.  If the
791           <literal>*</literal> symbol is placed before the module
792           name, then <emphasis>all</emphasis> the identifiers defined
793           in <replaceable>module</replaceable> are shown; otherwise
794           the list is limited to the exports of
795           <replaceable>module</replaceable>.  The
796           <literal>*</literal>-form is only available for modules
797           which are interpreted; for compiled modules (including
798           modules from packages) only the non-<literal>*</literal>
799           form of <literal>:browse</literal> is available.</para>
800         </listitem>
801       </varlistentry>
802
803       <varlistentry>
804         <term><literal>:cd</literal> <replaceable>dir</replaceable></term>
805         <indexterm><primary><literal>:cd</literal></primary></indexterm>
806         <listitem>
807           <para>Changes the current working directory to
808           <replaceable>dir</replaceable>.  A
809           &lsquo;<literal>&tilde;</literal>&rsquo; symbol at the
810           beginning of <replaceable>dir</replaceable> will be replaced
811           by the contents of the environment variable
812           <literal>HOME</literal>.</para>
813         </listitem>
814       </varlistentry>
815
816       <varlistentry>
817         <term><literal>:def</literal> <replaceable>name</replaceable> <replaceable>expr</replaceable></term>
818         <indexterm><primary><literal>:def</literal></primary></indexterm>
819         <listitem>
820           <para>The command <literal>:def</literal>
821           <replaceable>name</replaceable>
822           <replaceable>expr</replaceable> defines a new GHCi command
823           <literal>:<replaceable>name</replaceable></literal>,
824           implemented by the Haskell expression
825           <replaceable>expr</replaceable>, which must have type
826           <literal>String -> IO String</literal>.  When
827           <literal>:<replaceable>name</replaceable>
828           <replaceable>args</replaceable></literal> is typed at the
829           prompt, GHCi will run the expression
830           <literal>(<replaceable>name</replaceable>
831           <replaceable>args</replaceable>)</literal>, take the
832           resulting <literal>String</literal>, and feed it back into
833           GHCi as a new sequence of commands.  Separate commands in
834           the result must be separated by
835           &lsquo;<literal>\n</literal>&rsquo;.</para>
836
837           <para>That's all a little confusing, so here's a few
838           examples.  To start with, here's a new GHCi command which
839           doesn't take any arguments or produce any results, it just
840           outputs the current date & time:</para>
841
842 <screen>
843 Prelude> let date _ = Time.getClockTime >>= print >> return ""
844 Prelude> :def date date
845 Prelude> :date
846 Fri Mar 23 15:16:40 GMT 2001
847 </screen>
848
849           <para>Here's an example of a command that takes an argument.
850           It's a re-implementation of <literal>:cd</literal>:</para>
851
852 <screen>
853 Prelude> let mycd d = Directory.setCurrentDirectory d >> return ""
854 Prelude> :def mycd mycd
855 Prelude> :mycd ..
856 </screen>
857
858           <para>Or I could define a simple way to invoke
859           &ldquo;<literal>ghc &ndash;&ndash;make Main</literal>&rdquo; in the
860           current directory:</para>
861
862 <screen>
863 Prelude> :def make (\_ -> return ":! ghc &ndash;&ndash;make Main")
864 </screen>
865
866         </listitem>
867       </varlistentry>
868
869       <varlistentry>
870         <term><literal>:help</literal></term>
871         <indexterm><primary><literal>:help</literal></primary></indexterm>
872         <term><literal>:?</literal></term>
873         <indexterm><primary><literal>:?</literal></primary></indexterm>
874         <listitem>
875           <para>Displays a list of the available commands.</para>
876         </listitem>
877       </varlistentry>
878
879       <varlistentry>
880         <term><literal>:info</literal> <replaceable>name</replaceable>
881         ...</term>
882         <indexterm><primary><literal>:info</literal></primary>
883         </indexterm>
884         <listitem>
885           <para>Displays information about the given name(s).  For
886           example, if <replaceable>name</replaceable> is a class, then
887           the class methods and their types will be printed;  if
888           <replaceable>name</replaceable> is a type constructor, then
889           its definition will be printed;  if
890           <replaceable>name</replaceable> is a function, then its type
891           will be printed.  If <replaceable>name</replaceable> has
892           been loaded from a source file, then GHCi will also display
893           the location of its definition in the source.</para>
894         </listitem>
895       </varlistentry>
896
897       <varlistentry>
898         <term><literal>:load</literal>
899         <replaceable>module</replaceable> ...</term>
900         <indexterm><primary><literal>:load</literal></primary></indexterm>
901         <listitem>
902           <para>Recursively loads the specified
903           <replaceable>module</replaceable>s, and all the modules they
904           depend on.  Here, each <replaceable>module</replaceable>
905           must be a module name or filename, but may not be the name
906           of a module in a package.</para>
907
908           <para>All previously loaded modules, except package modules,
909           are forgotten.  The new set of modules is known as the
910           <firstterm>target set</firstterm>.  Note that
911           <literal>:load</literal> can be used without any arguments
912           to unload all the currently loaded modules and
913           bindings.</para>
914
915           <para>After a <literal>:load</literal> command, the current
916           context is set to:</para>
917
918           <itemizedlist>
919             <listitem>
920               <para><replaceable>module</replaceable>, if it was loaded
921               successfully, or</para>
922             </listitem>
923             <listitem>
924               <para>the most recently successfully loaded module, if
925               any other modules were loaded as a result of the current
926               <literal>:load</literal>, or</para>
927             </listitem>
928             <listitem>
929               <para><literal>Prelude</literal> otherwise.</para>
930             </listitem>
931           </itemizedlist>
932         </listitem>
933       </varlistentry>
934
935       <varlistentry>
936         <term><literal>:module <optional>+|-</optional> <optional>*</optional><replaceable>mod<subscript>1</subscript></replaceable> ... <optional>*</optional><replaceable>mod<subscript>n</subscript></replaceable></literal></term>
937         <indexterm><primary><literal>:module</literal></primary></indexterm>
938         <listitem>
939           <para>Sets or modifies the current context for statements
940           typed at the prompt.  See <xref linkend="ghci-scope"> for
941           more details.</para>
942         </listitem>
943       </varlistentry>
944
945       <varlistentry>
946         <term><literal>:quit</literal></term>
947         <indexterm><primary><literal>:quit</literal></primary></indexterm>
948         <listitem>
949           <para>Quits GHCi.  You can also quit by typing a control-D
950           at the prompt.</para>
951         </listitem>
952       </varlistentry>
953
954       <varlistentry>
955         <term><literal>:reload</literal></term>
956         <indexterm><primary><literal>:reload</literal></primary></indexterm>
957         <listitem>
958           <para>Attempts to reload the current target set (see
959           <literal>:load</literal>) if any of the modules in the set,
960           or any dependent module, has changed.  Note that this may
961           entail loading new modules, or dropping modules which are no
962           longer indirectly required by the target.</para>
963         </listitem>
964       </varlistentry>
965
966       <varlistentry>
967         <term><literal>:set</literal> <optional><replaceable>option</replaceable>...</optional></term>
968         <indexterm><primary><literal>:set</literal></primary></indexterm>
969         <listitem>
970           <para>Sets various options.  See <xref linkend="ghci-set">
971           for a list of available options.  The
972           <literal>:set</literal> command by itself shows which
973           options are currently set.</para>
974         </listitem>
975       </varlistentry>
976
977       <varlistentry>
978         <term><literal>:set</literal> <literal>args</literal>
979         <replaceable>arg</replaceable> ...</term>
980         <indexterm><primary><literal>:set</literal></primary></indexterm>
981         <listitem>
982           <para>Sets the list of arguments which are returned when the
983           program calls <literal>System.getArgs</literal><indexterm><primary>getArgs</primary>
984             </indexterm>.</para>
985         </listitem>
986       </varlistentry>
987
988       <varlistentry>
989         <term><literal>:set</literal> <literal>prog</literal>
990         <replaceable>prog</replaceable></term>
991         <indexterm><primary><literal>:set</literal></primary></indexterm>
992         <listitem>
993           <para>Sets the string to be returned when the program calls
994           <literal>System.getProgName</literal><indexterm><primary>getProgName</primary>
995             </indexterm>.</para>
996         </listitem>
997       </varlistentry>
998
999       <varlistentry>
1000         <term><literal>:show bindings</literal></term>
1001         <indexterm><primary><literal>:show bindings</literal></primary></indexterm>
1002         <listitem>
1003           <para>Show the bindings made at the prompt and their
1004           types.</para>
1005         </listitem>
1006       </varlistentry>
1007
1008       <varlistentry>
1009         <term><literal>:show modules</literal></term>
1010         <indexterm><primary><literal>:show modules</literal></primary></indexterm>
1011         <listitem>
1012           <para>Show the list of modules currently load.</para>
1013         </listitem>
1014       </varlistentry>
1015
1016       <varlistentry>
1017         <term><literal>:type</literal> <replaceable>expression</replaceable></term>
1018         <indexterm><primary><literal>:type</literal></primary></indexterm>
1019         <listitem>
1020           <para>Infers and prints the type of
1021           <replaceable>expression</replaceable>, including explicit
1022           forall quantifiers for polymorphic types.  The monomorphism
1023           restriction is <emphasis>not</emphasis> applied to the
1024           expression during type inference.</para>
1025         </listitem>
1026       </varlistentry>
1027
1028       <varlistentry>
1029         <term><literal>:undef</literal> <replaceable>name</replaceable></term>
1030         <indexterm><primary><literal>:undef</literal></primary></indexterm>
1031         <listitem>
1032           <para>Undefines the user-defined command
1033           <replaceable>name</replaceable> (see <literal>:def</literal>
1034           above).</para>
1035         </listitem>
1036       </varlistentry>
1037
1038       <varlistentry>
1039         <term><literal>:unset</literal> <replaceable>option</replaceable>...</term>
1040         <indexterm><primary><literal>:unset</literal></primary></indexterm>
1041         <listitem>
1042           <para>Unsets certain options.  See <xref linkend="ghci-set">
1043           for a list of available options.</para>
1044         </listitem>
1045       </varlistentry>
1046
1047       <varlistentry>
1048         <term><literal>:!</literal> <replaceable>command</replaceable>...</term>
1049         <indexterm><primary><literal>:!</literal></primary></indexterm>
1050         <indexterm><primary>shell commands</primary><secondary>in GHCi</secondary></indexterm>
1051         <listitem>
1052           <para>Executes the shell command
1053           <replaceable>command</replaceable>.</para>
1054         </listitem>
1055       </varlistentry>
1056
1057     </variablelist>
1058   </sect1>
1059
1060   <sect1 id="ghci-set">
1061     <title>The <literal>:set</literal> command</title>
1062     <indexterm><primary><literal>:set</literal></primary></indexterm>
1063
1064     <para>The <literal>:set</literal> command sets two types of
1065     options: GHCi options, which begin with
1066     &lsquo;<literal>+</literal>&rdquo; and &ldquo;command-line&rdquo;
1067     options, which begin with &lsquo;-&rsquo;.  </para>
1068
1069     <para>NOTE: at the moment, the <literal>:set</literal> command
1070     doesn't support any kind of quoting in its arguments: quotes will
1071     not be removed and cannot be used to group words together.  For
1072     example, <literal>:set -DFOO='BAR BAZ'</literal> will not do what
1073     you expect.</para>
1074
1075     <sect2>
1076       <title>GHCi options</title>
1077       <indexterm><primary>options</primary><secondary>GHCi</secondary>
1078       </indexterm>
1079
1080       <para>GHCi options may be set using <literal>:set</literal> and
1081       unset using <literal>:unset</literal>.</para>
1082
1083       <para>The available GHCi options are:</para>
1084
1085       <variablelist>
1086         <varlistentry>
1087           <term><literal>+r</literal></term>
1088           <indexterm><primary><literal>+r</literal></primary></indexterm>
1089           <indexterm><primary>CAFs</primary><secondary>in GHCi</secondary></indexterm>
1090           <indexterm><primary>Constant Applicative Form</primary><see>CAFs</see></indexterm>
1091           <listitem>
1092             <para>Normally, any evaluation of top-level expressions
1093             (otherwise known as CAFs or Constant Applicative Forms) in
1094             loaded modules is retained between evaluations.  Turning
1095             on <literal>+r</literal> causes all evaluation of
1096             top-level expressions to be discarded after each
1097             evaluation (they are still retained
1098             <emphasis>during</emphasis> a single evaluation).</para>
1099           
1100             <para>This option may help if the evaluated top-level
1101             expressions are consuming large amounts of space, or if
1102             you need repeatable performance measurements.</para>
1103           </listitem>
1104         </varlistentry>
1105
1106         <varlistentry>
1107           <term><literal>+s</literal></term>
1108           <indexterm><primary><literal>+s</literal></primary></indexterm>
1109           <listitem>
1110             <para>Display some stats after evaluating each expression,
1111             including the elapsed time and number of bytes allocated.
1112             NOTE: the allocation figure is only accurate to the size
1113             of the storage manager's allocation area, because it is
1114             calculated at every GC.  Hence, you might see values of
1115             zero if no GC has occurred.</para>
1116           </listitem>
1117         </varlistentry>
1118
1119         <varlistentry>
1120           <term><literal>+t</literal></term>
1121           <indexterm><primary><literal>+t</literal></primary></indexterm>
1122           <listitem>
1123             <para>Display the type of each variable bound after a
1124             statement is entered at the prompt.  If the statement is a
1125             single expression, then the only variable binding will be
1126             for the variable
1127             &lsquo;<literal>it</literal>&rsquo;.</para>
1128           </listitem>
1129         </varlistentry>
1130       </variablelist>
1131     </sect2>
1132
1133     <sect2 id="ghci-cmd-line-options">
1134       <title>Setting GHC command-line options in GHCi</title>
1135
1136       <para>Normal GHC command-line options may also be set using
1137       <literal>:set</literal>.  For example, to turn on
1138       <option>-fglasgow-exts</option>, you would say:</para>
1139
1140 <screen>
1141 Prelude> :set -fglasgow-exts
1142 </screen>
1143       
1144       <para>Any GHC command-line option that is designated as
1145       <firstterm>dynamic</firstterm> (see the table in <xref
1146       linkend="flag-reference">), may be set using
1147       <literal>:set</literal>.  To unset an option, you can set the
1148       reverse option:</para>
1149       <indexterm><primary>dynamic</primary><secondary>options</secondary></indexterm>
1150
1151 <screen>
1152 Prelude> :set -fno-glasgow-exts
1153 </screen>
1154
1155       <para><xref linkend="flag-reference"> lists the reverse for each
1156       option where applicable.</para>
1157
1158       <para>Certain static options (<option>-package</option>,
1159       <option>-I</option>, <option>-i</option>, and
1160       <option>-l</option> in particular) will also work, but some may
1161       not take effect until the next reload.</para>
1162       <indexterm><primary>static</primary><secondary>options</secondary></indexterm>
1163     </sect2>
1164   </sect1>
1165
1166   <sect1 id="ghci-dot-files">
1167     <title>The <filename>.ghci</filename> file</title>
1168     <indexterm><primary><filename>.ghci</filename></primary><secondary>file</secondary>
1169     </indexterm>
1170     <indexterm><primary>startup</primary><secondary>files, GHCi</secondary>
1171     </indexterm>
1172
1173     <para>When it starts, GHCi always reads and executes commands from
1174     <filename>$HOME/.ghci</filename>, followed by
1175     <filename>./.ghci</filename>.</para>
1176
1177     <para>The <filename>.ghci</filename> in your home directory is
1178     most useful for turning on favourite options (eg. <literal>:set
1179     +s</literal>), and defining useful macros.  Placing a
1180     <filename>.ghci</filename> file in a directory with a Haskell
1181     project is a useful way to set certain project-wide options so you
1182     don't have to type them everytime you start GHCi: eg. if your
1183     project uses GHC extensions and CPP, and has source files in three
1184     subdirectories A B and C, you might put the following lines in
1185     <filename>.ghci</filename>:</para>
1186
1187 <screen>
1188 :set -fglasgow-exts -cpp
1189 :set -iA:B:C
1190 </screen>
1191
1192     <para>(Note that strictly speaking the <option>-i</option> flag is
1193     a static one, but in fact it works to set it using
1194     <literal>:set</literal> like this.  The changes won't take effect
1195     until the next <literal>:load</literal>, though.)</para>
1196
1197     <para>Two command-line options control whether the
1198     <filename>.ghci</filename> files are read:</para>
1199
1200     <variablelist>
1201       <varlistentry>
1202         <term><option>-ignore-dot-ghci</option></term>
1203         <indexterm><primary><option>-ignore-dot-ghci</option></primary>
1204         </indexterm>
1205         <listitem>
1206           <para>Don't read either <filename>./.ghci</filename> or
1207           <filename>$HOME/.ghci</filename> when starting up.</para>
1208         </listitem>
1209       </varlistentry>
1210       <varlistentry>
1211         <term><option>-read-dot-ghci</option></term>
1212         <indexterm><primary><option>-read-dot-ghci</option></primary>
1213         </indexterm>
1214         <listitem>
1215           <para>Read <filename>.ghci</filename> and
1216           <filename>$HOME/.ghci</filename>.  This is normally the
1217           default, but the <option>-read-dot-ghci</option> option may
1218           be used to override a previous
1219           <option>-ignore-dot-ghci</option> option.</para>
1220         </listitem>
1221       </varlistentry>
1222     </variablelist>
1223
1224   </sect1>
1225
1226   <sect1>
1227     <title>FAQ and Things To Watch Out For</title>
1228     
1229     <variablelist>
1230       <varlistentry>
1231         <term>The interpreter can't load modules with foreign export
1232         declarations!</term>
1233         <listitem>
1234           <para>Unfortunately not.  We haven't implemented it yet.
1235           Please compile any offending modules by hand before loading
1236           them into GHCi.</para>
1237         </listitem>
1238       </varlistentry>
1239
1240       <varlistentry>
1241         <term><literal>-O</literal> doesn't work with GHCi!</term>
1242         <indexterm><primary><option>-O</option></primary>
1243         </indexterm>
1244         <listitem>
1245           <para>For technical reasons, the bytecode compiler doesn't
1246           interact well with one of the optimisation passes, so we
1247           have disabled optimisation when using the interpreter.  This
1248           isn't a great loss: you'll get a much bigger win by
1249           compiling the bits of your code that need to go fast, rather
1250           than interpreting them with optimisation turned on.</para>
1251         </listitem>
1252       </varlistentry>
1253
1254       <varlistentry>
1255         <term>Unboxed tuples don't work with GHCi</term>
1256         <listitem>
1257           <para>That's right.  You can always compile a module that
1258           uses unboxed tuples and load it into GHCi, however.
1259           (Incidentally the previous point, namely that
1260           <literal>-O</literal> is incompatible with GHCi, is because
1261           the bytecode compiler can't deal with unboxed
1262           tuples).</para>
1263         </listitem>
1264       </varlistentry>
1265
1266       <varlistentry>
1267         <term>Concurrent threads don't carry on running when GHCi is
1268         waiting for input.</term>
1269         <listitem>
1270           <para>No, they don't.  This is because the Haskell binding
1271           to the GNU readline library doesn't support reading from the
1272           terminal in a non-blocking way, which is required to work
1273           properly with GHC's concurrency model.</para>
1274         </listitem>
1275       </varlistentry>
1276
1277       <varlistentry>
1278         <term>After using <literal>getContents</literal>, I can't use
1279         <literal>stdin</literal> again until I do
1280         <literal>:load</literal> or <literal>:reload</literal>.</term>
1281
1282         <listitem>
1283           <para>This is the defined behaviour of
1284           <literal>getContents</literal>: it puts the stdin Handle in
1285           a state known as <firstterm>semi-closed</firstterm>, wherein
1286           any further I/O operations on it are forbidden.  Because I/O
1287           state is retained between computations, the semi-closed
1288           state persists until the next <literal>:load</literal> or
1289           <literal>:reload</literal> command.</para>
1290
1291           <para>You can make <literal>stdin</literal> reset itself
1292           after every evaluation by giving GHCi the command
1293           <literal>:set +r</literal>.  This works because
1294           <literal>stdin</literal> is just a top-level expression that
1295           can be reverted to its unevaluated state in the same way as
1296           any other top-level expression (CAF).</para>
1297         </listitem>
1298       </varlistentry>
1299
1300     </variablelist>
1301   </sect1>
1302
1303 </chapter>
1304
1305 <!-- Emacs stuff:
1306      ;;; Local Variables: ***
1307      ;;; mode: sgml ***
1308      ;;; sgml-parent-document: ("users_guide.sgml" "book" "chapter") ***
1309      ;;; End: ***
1310  -->