From: nantonio
Subject: Where can I download Lisp?
Date: 
Message-ID: <37CD79B3.B9A33577@ufl.edu>
Whis is the best Lisp (Common Lisp) out there and where can I download
it from?

From: Erik Naggum
Subject: Re: Where can I download Lisp?
Date: 
Message-ID: <3145203432142762@naggum.no>
* nantonio <········@ufl.edu>
| Whis is the best Lisp (Common Lisp) out there and where can I download
| it from?

  in my opinion, Franz Inc's Allegro Common Lisp.  try FTP.FRANZ.COM.  if
  you have an Intel processor running under an operating system, look in
  /pub/acl501trial and select PPC Linux (mklinux), FreeBSD (freebsd), Intel
  Linux glibc1 (redhat4) or Intel Linux glibc2 (redhat5).  if you don't
  have an operating system (to speak of), look in /pub/acl501lite.  (the
  latter sports an IDE that makes a lot of users of visual tools happy.)

  note: other people _may_ have other opinions.

#:Erik
-- 
  save the children: just say NO to sex with pro-lifers
From: James A. Crippen
Subject: Re: Where can I download Lisp?
Date: 
Message-ID: <l2iu5rmr21.fsf@mailhost.integritysi.com>
Erik Naggum <····@naggum.no> writes:

> * nantonio <········@ufl.edu>
> | Whis is the best Lisp (Common Lisp) out there and where can I download
> | it from?
> 
>   in my opinion, Franz Inc's Allegro Common Lisp.  try FTP.FRANZ.COM.  if
>   you have an Intel processor running under an operating system, look in
>   /pub/acl501trial and select PPC Linux (mklinux), FreeBSD (freebsd), Intel
                                ^^^^^^^^^^^^^^^^^^^
That one probably won't work on an Intel processor.  HTH.

>   Linux glibc1 (redhat4) or Intel Linux glibc2 (redhat5).  if you don't
>   have an operating system (to speak of), look in /pub/acl501lite.  (the
>   latter sports an IDE that makes a lot of users of visual tools happy.)

The IDE is kinda cute, but I can't see myself using it to do anything
other than GUI design.  I'd rather write my code in XEmacs and ILISP.

>   note: other people _may_ have other opinions.

BTW Erik, here's a Scheme version of that silly bit that was riding around
in your .signature file recently.  A friend and I tossed it back and forth
and it became rather baroque.  Enjoy.

(define pringles
  (lambda (chip)
    (define insert
      (lambda (chips chip)
        (list chips chip)))
    (define delete
      (lambda (chips)
        (cdr chips)))
    (define eat
      (lambda (chips)
        (if (eq? chips '())
            (insert chips 'chip)
            (eat (delete chip)))))
    (eat chip)))
From: Duane Rettig
Subject: Re: Where can I download Lisp?
Date: 
Message-ID: <4btbj8mhr.fsf@beta.franz.com>
·····@fredbox.com (James A. Crippen) writes:

> BTW Erik, here's a Scheme version of that silly bit that was riding around
> in your .signature file recently.  A friend and I tossed it back and forth
> and it became rather baroque.  Enjoy.
> 
> (define pringles
>   (lambda (chip)
>     (define insert
>       (lambda (chips chip)
>         (list chips chip)))
>     (define delete
>       (lambda (chips)
>         (cdr chips)))
>     (define eat
>       (lambda (chips)
=====>     (if (eq? chips '())
=====>        (insert chips 'chip)
>             (eat (delete chip)))))
>     (eat chip)))

Does this mean that you're throwing up into an empty
Pringles tube?

-- 
Duane Rettig          Franz Inc.            http://www.franz.com/ (www)
1995 University Ave Suite 275  Berkeley, CA 94704
Phone: (510) 548-3600; FAX: (510) 548-8253   ·····@Franz.COM (internet)
From: Arne Knut Roev
Subject: Re: Where can I download Lisp?
Date: 
Message-ID: <FHE7F9.nF6@online.no>
nantonio <········@ufl.edu> wrote:
> Whis is the best Lisp (Common Lisp) out there and where can I download
> it from?

Two comments here:

1. When you want to know which implementation is the "best" implementation
of Common Lisp, you should start your question by stating which operating
system it is supposed to run under, and you should probably define what
_you_ mean by "best".

2. I'll give you a pointer to an HTML-version of the Lisp Standard:
URL: "http://www.harlequin.com/books/HyperSpec"
Before you start using it, read the legalese!

-- 
Arne Knut Roev <······@online.no> Snail: N-6141 ROVDE, Norway
=
James, you ought to discover some day that words have an exact meaning.