From 78dd998b27d7021bc690dc8a273d2f66c65e4834 Mon Sep 17 00:00:00 2001 From: simonmar Date: Fri, 17 Aug 2001 12:46:40 +0000 Subject: [PATCH] [project @ 2001-08-17 12:46:40 by simonmar] Add default pretty printing library. --- Text/PrettyPrint.hs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Text/PrettyPrint.hs 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 -- 1.7.10.4