Skip to content

Instantly share code, notes, and snippets.

@kouddy
Created April 11, 2015 22:10
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/b60cff6630228f96053e to your computer and use it in GitHub Desktop.
Save kouddy/b60cff6630228f96053e to your computer and use it in GitHub Desktop.
(define (fringe items)
(if (pair? items)
(apply append (map fringe items))
(list items)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment