aboutsummaryrefslogtreecommitdiff
path: root/utils/CC/Pretty.hs
blob: 0a41abe3225521d6256dc063c78dfec68890d576 (plain)
1
2
3
4
5
6
7
8
9
module CC.Pretty where


class Pretty a where
    pretty :: a -> String


instance Pretty Int where
    pretty = show