Skip to content

Instantly share code, notes, and snippets.

@shirok
Created August 8, 2015 22:00
Show Gist options
  • Save shirok/72c00f18298fc225acc7 to your computer and use it in GitHub Desktop.
Save shirok/72c00f18298fc225acc7 to your computer and use it in GitHub Desktop.
(defun factor (n)
(loop for i from 2 to n
if (zerop (mod n i))
return `(,i ,@(factor (/ n i)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment