(wat-aro)

生きてます

SICP 問題 3.13

(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になることがないので終わらない.