So many Scheme implementations rename lambdas that were bound to some symbol in `let`. Chibi, for example: ``` scheme (let ((a (lambda _ _))) a) #<procedure a 0+> ``` STklos doesn’t do that yet: ``` scheme (let ((a (lambda _ _))) a) #[closure @1] ``` Is that implementable?
So many Scheme implementations rename lambdas that were bound to some symbol in
let. Chibi, for example:(let ((a (lambda _ _))) a) #<procedure a 0+>STklos doesn’t do that yet:
(let ((a (lambda _ _))) a) #[closure @1]Is that implementable?