Skip to content

Instantly share code, notes, and snippets.

@tequilasunset
Created February 24, 2011 22:43
Show Gist options
  • Save tequilasunset/843058 to your computer and use it in GitHub Desktop.
Save tequilasunset/843058 to your computer and use it in GitHub Desktop.
(define (flatten lst)
(if (null? lst)
'()
(let ((a (car lst)) (d (cdr lst)))
(if (pair? a)
(append (flatten a) (flatten d))
(cons a (flatten d))))))
(define fringe flatten)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment