9 lines
118 B
Haskell
9 lines
118 B
Haskell
|
{-# LANGUAGE NoImplicitPrelude #-}
|
||
|
|
||
|
module Pretty where
|
||
|
|
||
|
import Protolude
|
||
|
|
||
|
class Pretty a where
|
||
|
pretty :: a -> Text
|