Cross Reference: /hets/HasCASL/test/And.hascasl
free type Bool ::= False | True
op And : Bool -> ? Bool -> Bool
var x : ? Bool
. And False x = False
. And True x = x
. And False True = False %implied