mirror of
https://github.com/open-goal/jak-project
synced 2026-06-25 18:14:34 -04:00
6 lines
111 B
Common Lisp
6 lines
111 B
Common Lisp
(let ((sum 0))
|
|
(dotimes (i 100 7 8 9 sum)
|
|
(+! sum i)
|
|
;;(format #t "iter ~D sum ~D~%" i sum)
|
|
)
|
|
) |