define2.scm 151 B

1234567
  1. (define fun1 (cadr fun2))
  2. (define-early-constant fun2
  3. (list (lambda (x) (+ x 2)) (lambda (x) (+ x 3))))
  4. (display (fun1 10)) (newline)
  5. ;; Output: 13