>\let | x => 5 | y => 2 \in \lam z => x + y + z
\let | x => 5
| y => 2
\in (+) (x + y)
>:n whnf
>\let | x => 5 | y => 2 \in \lam z => x + y + z
(+) (x + y)
>:n nf
>\let | x => 5 | y => 2 \in \lam z => x + y + z
(+) 7
>:q
I don't like it prints (+) (x + y) on WHNF where information on x and y are lost
I did the following in the REPL:
I don't like it prints
(+) (x + y)
on WHNF where information onx
andy
are lost