1 2 3 4 5 6 7 8
module Data.Text.Extra where import Data.Text (Text) import qualified Data.Text as Text show :: Show a => a -> Text show = Text.pack . Prelude.show