Re: Lisp in hardware
From: Edi Weitz (spamtrap_at_agharta.de)
Date: 08/09/04
- Next message: Christophe Rhodes: "Re: Maining of the :case keyword in make-pathname and pathname-name"
- Previous message: rem642b_at_Yahoo.Com: "Re: Salaries for Lisp engineers"
- In reply to: Alexander Burger: "Re: Lisp in hardware"
- Next in thread: Alexander Burger: "Re: Lisp in hardware"
- Reply: Alexander Burger: "Re: Lisp in hardware"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Mon, 09 Aug 2004 19:32:38 +0200
On 9 Aug 2004 17:00:44 GMT, Alexander Burger <abu@software-lab.de> wrote:
> please show me a Lisp interpreter faster than Pico Lisp
If I do this
(de fac (n) (if (= n 0) 1 (* n (fac (- n 1)))))
in PicoLisp 2.0.13 and then evaluate (fac 5000) it takes about 15
seconds on my laptop.
With CLISP 2.33.2 and
(defun fac (n) (if (= n 0) 1 (* n (fac (- n 1)))))
(fac 5000) needs less than 0.3 seconds without compiling the function.
Edi.
-- "Lisp doesn't look any deader than usual to me." (David Thornley, reply to a question older than most languages) Real email: (replace (subseq "spamtrap@agharta.de" 5) "edi")
- Next message: Christophe Rhodes: "Re: Maining of the :case keyword in make-pathname and pathname-name"
- Previous message: rem642b_at_Yahoo.Com: "Re: Salaries for Lisp engineers"
- In reply to: Alexander Burger: "Re: Lisp in hardware"
- Next in thread: Alexander Burger: "Re: Lisp in hardware"
- Reply: Alexander Burger: "Re: Lisp in hardware"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|