{-# LANGUAGE Safe #-}
{-# LANGUAGE NoImplicitPrelude #-}
module Text.Show (
ShowS,
Show(showsPrec, show, showList),
shows,
showChar,
showString,
showParen,
showListWith,
) where
import GHC.Show
showListWith :: (a -> ShowS) -> [a] -> ShowS
showListWith = showList__