Skip to content

Instantly share code, notes, and snippets.

@kouddy
Created April 11, 2015 02:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kouddy/86493acf6db81b00e733 to your computer and use it in GitHub Desktop.
Save kouddy/86493acf6db81b00e733 to your computer and use it in GitHub Desktop.
(define (foreach proc items)
(define (iter i result)
(if (null? i)
result
(iter (cdr i) (cons result (proc (car i))))))
(iter items null))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment