Cross Reference: Expr.hascasl
xref
: /
hets
/
HasCASL
/
test
/
Expr.hascasl
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
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