churf/sample-programs/mono-2.crf
2023-04-05 03:03:42 +02:00

11 lines
160 B
Text

data Either(a b) where
Left: a -> Either (a b)
Right: b -> Either (a b)
unwrapLeft x = case x of
Left y => y
wow = Left 5
main = unwrapLeft wow