[project @ 2001-08-17 12:46:40 by simonmar]
authorsimonmar <unknown>
Fri, 17 Aug 2001 12:46:40 +0000 (12:46 +0000)
committersimonmar <unknown>
Fri, 17 Aug 2001 12:46:40 +0000 (12:46 +0000)
Add default pretty printing library.

Text/PrettyPrint.hs [new file with mode: 0644]

diff --git a/Text/PrettyPrint.hs b/Text/PrettyPrint.hs
new file mode 100644 (file)
index 0000000..004485f
--- /dev/null
@@ -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