This PR deprecates `let_fun` syntax in favor of `have` and removes `letFun` support from WHNF and `simp`.
13 lines
173 B
Text
13 lines
173 B
Text
#check (fun x => x) Nat
|
|
|
|
#check have x := Nat; x
|
|
|
|
set_option pp.beta true
|
|
|
|
#check (fun x => x) Nat
|
|
|
|
#check have x := Nat; x
|
|
|
|
set_option pp.all true
|
|
|
|
#check (fun x => x) Nat
|