Expr.hascasl revision fd34bc2f8ca5771483b80058932a365b254fcb29
type Bool ::= True | False
op a : Bool = True
op notA : Bool = case a of True -> False | False -> True
op b : Bool = let x = True; y = False; z = x in True
op b : Bool -> Bool = \x .! x