Hi,I installed the latest "ongoing" (v3.1.0.12) on my iMac, and compared the timing results of (bench (fibo 33)). Not too useful, I was just curious. ;-)
pil32: 0.804 sec emu64: 10.032 sec My EmuLisp in Safari: 5.82 sec My EmuLisp in Chrome: 8.102 sec My EmuLisp in Chromium: 8.261 sec The fibo used in all cases was this: (de fibo (N) (if (>= 2 N) 1 (+ (fibo (dec N)) (fibo (- N 2))))) And the returned value was 3524578. ;-) /Jon -- UNSUBSCRIBE: mailto:[email protected]?subject=Unsubscribe
