Login
7 branches 0 tags
Ben (Win10) Fixed all the warnings that the MSC static analyzer found 5b79596 3 years ago 777 Commits
nujel / benchmark / for / franz.lsp
(defun run-test ()
  (prog (ret i)
     (set 'ret 0)
     (set 'i 0)
   loop
     (cond ((> i 9999999)
            (return ret))
           (t (set 'ret (+ ret i))
              (set 'i (+ i 1))
              (go loop)))))

(princ "This results in: ")
(princ (run-test))
(exit 0)