fork download
  1. (defun fu (x y z)
  2. (setq l nil)
  3. (loop
  4. (if (> x y) (return l))
  5. (if (= (rem x z) 0) (setq l (append l (list x))))
  6. (setq x (+ x 1))
  7. (format t "~A" x)
  8. (format t l)
  9. )
  10. )
  11. (format t "~{~A~}" (fu 1 10 1))
Runtime error #stdin #stdout 0.04s 10832KB
stdin
Standard input is empty
stdout
2