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