1module Basement.Show
2    where
3
4import qualified Prelude
5import           Basement.Compat.Base
6import           Basement.UTF8.Base (String)
7
8-- | Use the Show class to create a String.
9--
10-- Note that this is not efficient, since
11-- an intermediate [Char] is going to be
12-- created before turning into a real String.
13show :: Prelude.Show a => a -> String
14show = fromList . Prelude.show
15