9f08156a73
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
8 lines
271 B
Text
8 lines
271 B
Text
print fun x : Bool, (fun x : Bool, x).
|
|
print let x := true,
|
|
y := true
|
|
in (let z := x /\ y,
|
|
f := (fun x y : Bool, x /\ y <=>
|
|
y /\ x <=>
|
|
x \/ y \/ y)
|
|
in (f x y) \/ z)
|