Search found 1 match

by fetchoo
Mon Jan 13, 2014 4:34 pm
Forum: So, what can you actually DO with newLISP?
Topic: new comer. performance question
Replies: 1
Views: 4933

new comer. performance question

Hi I tried the following and compared the running time with CCL > (let ((s)) (time (dotimes (i 1000000) (set 's (cons (sqrt i) s))))) ... do not stop > (let ((s)) (time (dotimes (i 1000000) (push (sqrt i) s)))) 111.93 milliseconds with CCL ? (let ((s)) (time (dotimes (i 100000) (push (sqrt i) s)))) ...