Closed Seasawher closed 3 weeks ago
def fac (n : Nat) := match n with | 0 => 1 | n + 1 => (n + 1) * fac n theorem foo (n : Nat) : n = 0 := by generalize h : fac n = m induction m with | zero => sorry | succ => sorry