2014-01-05 19:03:35 +00:00
|
|
|
print fun x : Bool, (fun x : Bool, x).
|
|
|
|
print let x := true,
|
2013-08-18 22:23:01 +00:00
|
|
|
y := true
|
|
|
|
in (let z := x /\ y,
|
2014-01-08 08:38:39 +00:00
|
|
|
f := (fun x y : Bool, x /\ y =
|
|
|
|
y /\ x =
|
2013-08-18 22:23:01 +00:00
|
|
|
x \/ y \/ y)
|
|
|
|
in (f x y) \/ z)
|