Cross Reference: Expr.hascasl
xref
: /
illumos-gate
/
usr
/
src
/
lib
/
libshell
/
i386
/
src
/
cmd
/
ksh93
/
FEATURE
/
cmds
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