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