Chapter 3. Using GHCi

Table of Contents

3.1. Introduction to GHCi
3.2. Loading source files
3.2.1. Modules vs. filenames
3.2.2. Making changes and recompilation
3.3. Loading compiled code
3.4. Interactive evaluation at the prompt
3.4.1. I/O actions at the prompt
3.4.2. Using do-notation at the prompt
3.4.3. What's really in scope at the prompt?
3.4.3.1. :module and :load
3.4.3.2. Qualified names
3.4.3.3. The :main and :run commands
3.4.4. The it variable
3.4.5. Type defaulting in GHCi
3.5. The GHCi Debugger
3.5.1. Breakpoints and inspecting variables
3.5.1.1. Setting breakpoints
3.5.1.2. Listing and deleting breakpoints
3.5.2. Single-stepping
3.5.3. Nested breakpoints
3.5.4. The _result variable
3.5.5. Tracing and history
3.5.6. Debugging exceptions
3.5.7. Example: inspecting functions
3.5.8. Limitations
3.6. Invoking GHCi
3.6.1. Packages
3.6.2. Extra libraries
3.7. GHCi commands
3.8. The :set command
3.8.1. GHCi options
3.8.2. Setting GHC command-line options in GHCi
3.9. The .ghci file
3.10. Compiling to object code inside GHCi
3.11. FAQ and Things To Watch Out For

GHCi[1] is GHC's interactive environment, in which Haskell expressions can be interactively evaluated and programs can be interpreted. If you're familiar with Hugs, then you'll be right at home with GHCi. However, GHCi also has support for interactively loading compiled code, as well as supporting all[2] the language extensions that GHC provides. . GHCi also includes an interactive debugger (see Section 3.5, “The GHCi Debugger”).

3.1. Introduction to GHCi

Let's start with an example GHCi session. You can fire up GHCi with the command ghci:

$ ghci
GHCi, version 6.8.1: http://www.haskell.org/ghc/  :? for help
Loading package base ... linking ... done.
Prelude> 

There may be a short pause while GHCi loads the prelude and standard libraries, after which the prompt is shown. As the banner says, you can type :? to see the list of commands available, and a half line description of each of them.

We'll explain most of these commands as we go along. For Hugs users: many things work the same as in Hugs, so you should be able to get going straight away.

Haskell expressions can be typed at the prompt:

Prelude> 1+2
3
Prelude> let x = 42 in x / 9
4.666666666666667
Prelude> 

GHCi interprets the whole line as an expression to evaluate. The expression may not span several lines - as soon as you press enter, GHCi will attempt to evaluate it.



[1] The ‘i’ stands for “Interactive”

[2] except foreign export, at the moment