2015/10/18SICP 問題 2.17schemeSICP(define (last-pair items) (if (null? (cdr items)) items (last-pair (cdr items))))