prettyprinter-1.7.2: src-text/Data/Text/IO.hs
-- Provide a fake API, mimicking Data.Text.IO from text package,
-- but actually backed by type Text = String. It is used only in rare
-- circumstances, when prettyprinter is built with -text flag.
--
{-# OPTIONS_GHC -fno-warn-missing-signatures #-}
module Data.Text.IO where
import qualified System.IO
hPutStr = System.IO.hPutStr
putStrLn = System.IO.putStrLn