module Data.String where

import GHC.Base hiding (String)

type String = [Char]

class FromString a where
    fromString :: String -> a
