2015/10/18

SICP 問題 2.17

(define (last-pair items)
  (if (null? (cdr items))
      items
      (last-pair (cdr items))))

© 2022 wat-aro