SICP Practice

Practice 4.15

(define (try p)
  (if (halt? p p)
      (run-forever)
      'halted))

运行(try try)

所以我们不能写出一个可以判断是否终止的过程halt?