lean4-htt/tests/lean/run/unfoldMany.lean
2022-05-09 07:09:53 -07:00

7 lines
107 B
Text

def f (x : Nat) := x + 1
def g (x : Nat) := f x + f x
example : g x > 0 := by
unfold g, f
simp_arith