935c2a03a3
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
8 lines
239 B
Text
8 lines
239 B
Text
import Int
|
|
import tactic
|
|
definition a : Nat := 10
|
|
-- Trivial indicates a "proof by evaluation"
|
|
theorem T1 : a > 0 := trivial
|
|
theorem T2 : a - 5 > 3 := trivial
|
|
-- The next one is commented because it fails
|
|
-- theorem T3 : a > 11 := trivial
|