--14.28

-- ???? I have no idea
twist :: Either a b -> Either b a
twist (Right x) = (Left x)
twist (Left x) = (Right x)

