From 6ab1a2acbaaa851bf42481dd9f7736df3fcf0f4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20P=C3=A4tzel?= Date: Thu, 30 May 2019 12:40:47 +0200 Subject: [PATCH] Add Pretty class --- src/Pretty.hs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/Pretty.hs diff --git a/src/Pretty.hs b/src/Pretty.hs new file mode 100644 index 0000000..109109b --- /dev/null +++ b/src/Pretty.hs @@ -0,0 +1,11 @@ +{-# LANGUAGE NoImplicitPrelude #-} + + +module Pretty where + + +import Protolude + + +class Pretty a where + pretty :: a -> Text