[project @ 2002-05-09 13:16:29 by simonmar]
[ghc-base.git] / Text / PrettyPrint.hs
1 -----------------------------------------------------------------------------
2 -- |
3 -- Module      :  Text.PrettyPrint
4 -- Copyright   :  (c) The University of Glasgow 2001
5 -- License     :  BSD-style (see the file libraries/base/LICENSE)
6 -- 
7 -- Maintainer  :  libraries@haskell.org
8 -- Stability   :  experimental
9 -- Portability :  portable
10 --
11 -- Re-export of Text.PrettyPrint.HughesPJ to provide a default
12 -- pretty-printing library.  Marked experimental at the moment so we
13 -- can change the default later if necessary.
14 --
15 -----------------------------------------------------------------------------
16
17 module Text.PrettyPrint ( 
18         module Text.PrettyPrint.HughesPJ
19  ) where
20
21 import Prelude
22 import Text.PrettyPrint.HughesPJ