2014-01-05 12:05:08 -08:00
|
|
|
import Int
|
|
|
|
import tactic
|
|
|
|
definition a : Nat := 10
|
2014-01-05 08:52:46 -08:00
|
|
|
-- Trivial indicates a "proof by evaluation"
|
2014-01-05 19:10:21 -08:00
|
|
|
theorem T1 : a > 0 := trivial
|
|
|
|
theorem T2 : a - 5 > 3 := trivial
|
2014-01-05 08:52:46 -08:00
|
|
|
-- The next one is commented because it fails
|
2014-01-05 19:10:21 -08:00
|
|
|
-- theorem T3 : a > 11 := trivial
|