lean2/tests/lean/exists1.lean

6 lines
150 B
Text
Raw Normal View History

Import Int.
Variable a : Int
Variable P : Int -> Int -> Bool
Axiom H : P a a
Theorem T : exists x : Int, P a a := ExistsIntro a H.
Show Environment 1.