----------------
(declaim (optimize (safety 0)))
(lambda () (loop for x of-type fixnum from (1- most-positive-fixnum) to most-positive-fixnum do (progn) finally (print x)))
(compile nil *)
(funcall *)
The above loops even though it is conforming ANSI CL.
----------------
(declaim (optimize (safety 0)))
(lambda () fixnum) to most-positive- fixnum
(loop for x of-type fixnum
from (1- most-positive-
do (progn)
finally (print x)))
(compile nil *)
(funcall *)
----------------
The above loops even though it is conforming ANSI CL.