6 lines
128 B
Text
6 lines
128 B
Text
def f : Nat → Nat :=
|
|
WellFounded.fix f.proof_1 fun n a =>
|
|
if h : n = 0 then 1
|
|
else
|
|
let y := 42;
|
|
2 * a (n - 1) ⋯
|