2015/11/19SICP 問題 3.13schemeSICP(define (make-cycle x) (set-cdr! (last-pair x) x) s) (define z (make-cycle (list 'a 'b 'c))) zのポインタ図. (last-pair z)を計算しようとするとlast-pair?が#tになることがないので終わらない.