Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Where can I download Lisp?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  5 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
nantonio  
View profile  
 More options Sep 1 1999, 3:00 am
Newsgroups: comp.lang.lisp
From: nantonio <nanto...@ufl.edu>
Date: 1999/09/01
Subject: Where can I download Lisp?
Whis is the best Lisp (Common Lisp) out there and where can I download
it from?

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Erik Naggum  
View profile  
 More options Sep 1 1999, 3:00 am
Newsgroups: comp.lang.lisp
From: Erik Naggum <e...@naggum.no>
Date: 1999/09/01
Subject: Re: Where can I download Lisp?
* nantonio <nanto...@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


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Arne Knut Roev  
View profile  
 More options Sep 1 1999, 3:00 am
Newsgroups: comp.lang.lisp
From: Arne Knut Roev <akr...@online.no>
Date: 1999/09/01
Subject: Re: Where can I download Lisp?

nantonio <nanto...@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 <akr...@online.no> Snail: N-6141 ROVDE, Norway
=
James, you ought to discover some day that words have an exact meaning.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
James A. Crippen  
View profile  
 More options Sep 3 1999, 3:00 am
Newsgroups: comp.lang.lisp
From: ja...@fredbox.com (James A. Crippen)
Date: 1999/09/03
Subject: Re: Where can I download Lisp?

Erik Naggum <e...@naggum.no> writes:
> * nantonio <nanto...@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)))


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Duane Rettig  
View profile  
 More options Sep 3 1999, 3:00 am
Newsgroups: comp.lang.lisp
From: Duane Rettig <du...@franz.com>
Date: 1999/09/03
Subject: Re: Where can I download Lisp?
ja...@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   du...@Franz.COM (internet)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »