main.lisp 277 B

12345678910111213
  1. (defun genlist (n)
  2. (defun impl (x lst)
  3. (if (> x n)
  4. (reverse lst)
  5. (impl (+ 1 x) (cons x lst))))
  6. (impl 1 '()))
  7. (let ((sum 0))
  8. (loop for x in (genlist 999)
  9. do (if (or (equal 0 (mod x 3))
  10. (equal 0 (mod x 5)))
  11. (setf sum (+ sum x))))
  12. (print sum))