Cross Reference: Expr.hascasl
xref
: /
hets
/
ToHaskell
/
test
/
Expr.hascasl
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
Expr.hascasl revision 962c5fa4000a34bd6b1bf5edd25b0b73dd6ebb2a
941
N/A
type bool ::= True | False
941
N/A
941
N/A
op a : bool = True
941
N/A
941
N/A
op notA : bool = case a of True -> False | False -> True
941
N/A
941
N/A
op b : bool = let x = True; y = False; z = x in True
941
N/A
941
N/A
op b : bool -> bool = \x .! x
941
N/A