lean2/examples/lean/ex4.lean
Leonardo de Moura 71d76a891c Add proof by evaluation examples
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2013-09-05 18:56:33 -07:00

6 lines
No EOL
193 B
Text

Definition a : Nat := 10
(* Trivial indicates a "proof by evaluation" *)
Theorem T1 : a > 0 := Trivial
Theorem T2 : a - 5 > 3 := Trivial
(* The next one fails *)
Theorem T3- : a > 11 := Trivial