Just experimenting...
Seems that Dump interrupts dotimes evaluation
D:\Temp>newlisp
newLISP v.9.2.0 on Win32, execute 'newlisp -h' for more info.
> (dotimes (x 5) (dump 'a))
(4150824 69 4145160 4145160 4177016)
>
Regards
Maurizio
Problems with Dump ?
'dump' does not print, what you see is the return value from the 'dotimes' loop. This way you can see all of them:
Lutz
Code: Select all
> (dotimes (x 5) (println (dump 'a)))
(260032 69 253952 253952 3158112)
(260032 69 253952 253952 3158112)
(260032 69 253952 253952 3158112)
(260032 69 253952 253952 3158112)
(260032 69 253952 253952 3158112)
(260032 69 253952 253952 3158112)
>