Cross Reference: /hets/HasCASL/test/Expr.hascasl
Cross Reference: Expr.hascasl
xref
: /
hets
/
HasCASL
/
test
/
Expr.hascasl
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
1
2
3
4
5
6
7
8
9
10
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