diff options
Diffstat (limited to 'src/PrettyPrint.hs')
-rw-r--r-- | src/PrettyPrint.hs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/PrettyPrint.hs b/src/PrettyPrint.hs new file mode 100644 index 00000000..35d91dc1 --- /dev/null +++ b/src/PrettyPrint.hs @@ -0,0 +1,7 @@ +module PrettyPrint ( module Pretty ) where + +#if __GLASGOW_HASKELL__ < 503 +import Pretty +#else +import Text.PrettyPrint as Pretty +#endif |