Hacker News new | past | comments | ask | show | jobs | submit login

An oldie: https://ashwinram.org/1986/01/28/a-short-ballad-dedicated-to...

Describes the evolution from:

  (cdr (assq key a-list))
to:

  (let ((val (assq key a-list)))
     (cond ((not (null? val)) (cdr val))
           (else nil)))



Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: