aboutsummaryrefslogtreecommitdiff
path: root/src/Pretty.hs
blob: ef7c39a5530f1ada59b79534a4e74c9e18a53b43 (plain)
1
2
3
4
5
6
7
8
9
10
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