As an example, we should unparse: ```clojure (lambda [x A] (lambda [y A] (lambda [z A] e))) ``` as: ```clojure (lambda [x y z A] e) ``` (that kind of shortcut presentation is the whole purpose of the unparser)
As an example, we should unparse:
as:
(lambda [x y z A] e)(that kind of shortcut presentation is the whole purpose of the unparser)