Skip to content

Instantly share code, notes, and snippets.

@zestime
Created February 6, 2015 10:01
Show Gist options
  • Select an option

  • Save zestime/af18668ef5211755cb40 to your computer and use it in GitHub Desktop.

Select an option

Save zestime/af18668ef5211755cb40 to your computer and use it in GitHub Desktop.
(define (make-accumulator init)
(lambda (value)
(begin (set! init (+ init value))
init)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment