From: Shriram Krishnamurthi (sk at cs.brown.edu) Date: Sat Feb 18 10:50:23 EST 2006 |
|
It's hard to even begin to explain why this code is awful, and almost certainly buggy, but aren't you just trying to say: (define (env-get-binding s env) (unless (null? env) (hash-table-get (car env) s (lambda () (env-get-binding s (cdr env)))))) ? Shriram
Posted on the users mailing list. |
|