{-# LANGUAGE Trustworthy #-}
{-# LANGUAGE NoImplicitPrelude, FlexibleInstances #-}
module Data.String (
String
, IsString(..)
, lines
, words
, unlines
, unwords
) where
import GHC.Base
import Data.List (lines, words, unlines, unwords)
class IsString a where
fromString :: String -> a
instance IsString [Char] where
fromString xs = xs