From: simonmar Date: Fri, 17 Aug 2001 12:46:40 +0000 (+0000) Subject: [project @ 2001-08-17 12:46:40 by simonmar] X-Git-Tag: nhc98-1-18-release~1178 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=78dd998b27d7021bc690dc8a273d2f66c65e4834;p=haskell-directory.git [project @ 2001-08-17 12:46:40 by simonmar] Add default pretty printing library. --- diff --git a/Text/PrettyPrint.hs b/Text/PrettyPrint.hs new file mode 100644 index 0000000..004485f --- /dev/null +++ b/Text/PrettyPrint.hs @@ -0,0 +1,24 @@ +----------------------------------------------------------------------------- +-- +-- Module : Text.PrettyPrint.HughesPJ +-- Copyright : (c) The University of Glasgow 2001 +-- License : BSD-style (see the file libraries/core/LICENSE) +-- +-- Maintainer : libraries@haskell.org +-- Stability : experimental +-- Portability : portable +-- +-- $Id: PrettyPrint.hs,v 1.1 2001/08/17 12:46:40 simonmar Exp $ +-- +-- Re-export of Text.PrettyPrint.HughesPJ to provide a default +-- pretty-printing library. Marked experimental at the moment so we +-- can change the default later if necessary. +-- +----------------------------------------------------------------------------- + +module Text.PrettyPrint ( + module Text.PrettyPrint.HughesPJ + ) where + +import Prelude +import Text.PrettyPrint.HughesPJ