``` > (let ((b 24)) (cons 'x (lambda (a) (print b) 42))) (x closure ((b . 24)) (a) (print b) 42) ``` Ideally, should be ``` (x . <closure>) ``` but I'm not sure how to fix this.