From bc52411ae2ed26cab1d5086ae6df68f23ebbd052 Mon Sep 17 00:00:00 2001 From: Tom Smeding Date: Wed, 10 Jun 2020 19:59:03 +0200 Subject: Initial state I found the code in --- utils/CC/Pretty.hs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 utils/CC/Pretty.hs (limited to 'utils/CC/Pretty.hs') diff --git a/utils/CC/Pretty.hs b/utils/CC/Pretty.hs new file mode 100644 index 0000000..0a41abe --- /dev/null +++ b/utils/CC/Pretty.hs @@ -0,0 +1,9 @@ +module CC.Pretty where + + +class Pretty a where + pretty :: a -> String + + +instance Pretty Int where + pretty = show -- cgit v1.2.3-54-g00ecf