Skip to content

Instantly share code, notes, and snippets.

@michiakig
Created April 8, 2013 13:30
Show Gist options
  • Save michiakig/5336764 to your computer and use it in GitHub Desktop.
Save michiakig/5336764 to your computer and use it in GitHub Desktop.
(defun deep-rev (list)
(if (or (null list) (not (listp list))) list
(reverse (mapcar 'deep-rev list))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment