Skip to content

Instantly share code, notes, and snippets.

@ecounysis
Created September 9, 2011 06:32
Show Gist options
  • Save ecounysis/1205620 to your computer and use it in GitHub Desktop.
Save ecounysis/1205620 to your computer and use it in GitHub Desktop.
SICP Exercise 2.23
(define (freach fn lst)
(cond ((null? lst) #t)
(else (fn (car lst)) (freach fn (cdr lst)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment