lean4-htt/tests/lean/ppBeta.lean.expected.out
Kyle Miller 3854ba87b6
feat: pretty print letFun using have syntax (#8372)
This PR modifies the pretty printer to use `have` syntax instead of
`let_fun` syntax.
2025-05-16 15:10:01 +00:00

7 lines
94 B
Text

(fun x => x) Nat : Type
have x := Nat;
x : Type
Nat : Type
have x := Nat;
x : Type
Nat : Type