This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE OverloadedStrings #-} | |
import GHC.Exts ( IsString(..) ) | |
data Foo = A | B | Other String deriving Show | |
instance IsString Foo where | |
fromString "A" = A | |
fromString "B" = B | |
fromString xs = Other xs |