Skip to content

Instantly share code, notes, and snippets.

@EnigmaCurry
Created January 27, 2009 19:19
Show Gist options
  • Save EnigmaCurry/53486 to your computer and use it in GitHub Desktop.
Save EnigmaCurry/53486 to your computer and use it in GitHub Desktop.
(defun flatten (lst)
(cond ((atom lst) lst)
((listp (car lst))
(append (flatten (car lst)) (flatten (cdr lst)))
)
(t (append (list (car lst)) (flatten (cdr lst))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment