Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save miyamuko/420815 to your computer and use it in GitHub Desktop.
Save miyamuko/420815 to your computer and use it in GitHub Desktop.
(let ((max-sym t)
(max-len 1))
(do-all-symbols (sym (list max-sym max-len))
(when (< max-len (length (string sym)))
(setf max-sym sym max-len (length (string sym))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment