Skip to content

Instantly share code, notes, and snippets.

@eschulte
Created August 29, 2011 17:42
Show Gist options
  • Save eschulte/1178917 to your computer and use it in GitHub Desktop.
Save eschulte/1178917 to your computer and use it in GitHub Desktop.
(defun all-to-string (tbl)
(if (listp tbl)
(mapcar #'all-to-string tbl)
(if (stringp tbl)
tbl
(format "%s" tbl))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment