9 lines
269 B
Text
9 lines
269 B
Text
|
Show fun x : Bool, (fun x : Bool, x).
|
||
|
Show 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)
|