summaryrefslogtreecommitdiff
path: root/progs/lib/hbc/Either.hs
blob: fad5af8155f846dad7f86d18a9968104f8ab0f68 (about) (plain)
1
2
module Either(Either(..)) where
data Either a b = Left a | Right b deriving (Eq, Ord, Text, Binary)