Name:
Student ID:
E-mail:
(define (foo n) (lambda (i) (set! n (* n i)) n))
(define x (foo 2)) (x 3) (x 7) (define y (foo 3)) (y 3) (y 7) (x 5) (y 5)