sva42377.scm 156 B

123456789
  1. (begin
  2. (define a '#f)
  3. ((lambda (b)
  4. (set! b (lambda (c) (cons c c)))
  5. (set! a b))
  6. #f)
  7. (format #t "a7: ~w~%" (a 7)))
  8. ;; Output: a7: (7 . 7)