aboutsummaryrefslogtreecommitdiff
path: root/src/Pretty.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Pretty.hs')
-rw-r--r--src/Pretty.hs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Pretty.hs b/src/Pretty.hs
new file mode 100644
index 0000000..ef7c39a
--- /dev/null
+++ b/src/Pretty.hs
@@ -0,0 +1,11 @@
+module Pretty where
+
+
+class Pretty a where
+ prettysPrec :: Int -> a -> ShowS
+
+prettyPrec :: Pretty a => Int -> a -> String
+prettyPrec d x = prettysPrec d x ""
+
+pretty :: Pretty a => a -> String
+pretty x = prettyPrec 0 x