blob: 70eef63cf9558effb28366339a41ff54f4e304c5 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | {-# OPTIONS_GHC -fno-warn-orphans #-}
module Data.Text.Extended
    ( module Data.Text
    , show
    ) where
import Data.Text
import Prelude hiding (show)
import qualified Prelude
show :: Show a => a -> Text
show = pack . Prelude.show
 |