The GOOD: Modularity
(define random-init 7) (define rand (let ((x random-init)) (lambda ()
(set! x (rand-update x))
x)))
Jim Miller