From: Pascal Costanza
Subject: A Quickstart to Common Lisp
Date: 
Message-ID: <5g8id5F3foogiU1@mid.individual.net>
Another article popped up: 
http://www.builderau.com.au/program/soa/A-Quickstart-to-Common-Lisp/0,339024614,339280188,00.htm


Pascal

-- 
My website: http://p-cos.net
Common Lisp Document Repository: http://cdr.eurolisp.org
Closer to MOP & ContextL: http://common-lisp.net/project/closer/

From: Frank Buss
Subject: Re: A Quickstart to Common Lisp
Date: 
Message-ID: <ghml2j9n4m3d$.1vr0lkr8awunq.dlg@40tude.net>
Pascal Costanza wrote:

> Another article popped up: 
> http://www.builderau.com.au/program/soa/A-Quickstart-to-Common-Lisp/0,339024614,339280188,00.htm

Looks like no obvious bugs, but no interesting things to attract newcomers
and at the second page there is a line like this:

(do ((i 0 (+ 1 i))) ((> i 10)) (print i))

As an unbiased reader, I always knew that Lisp is an acronym for "Lots of
Irritating Superfluous Parentheses", so this language is not for me :-)

-- 
Frank Buss, ··@frank-buss.de
http://www.frank-buss.de, http://www.it4-systems.de
From: Pascal Costanza
Subject: Re: A Quickstart to Common Lisp
Date: 
Message-ID: <5g8m32F3g1l1sU1@mid.individual.net>
Frank Buss wrote:
> Pascal Costanza wrote:
> 
>> Another article popped up: 
>> http://www.builderau.com.au/program/soa/A-Quickstart-to-Common-Lisp/0,339024614,339280188,00.htm
> 
> Looks like no obvious bugs, but no interesting things to attract newcomers
> and at the second page there is a line like this:
> 
> (do ((i 0 (+ 1 i))) ((> i 10)) (print i))
> 
> As an unbiased reader, I always knew that Lisp is an acronym for "Lots of
> Irritating Superfluous Parentheses", so this language is not for me :-)

The author seems to be heading for a series of articles, so let's see 
how it will evolve.


Pascal

-- 
My website: http://p-cos.net
Common Lisp Document Repository: http://cdr.eurolisp.org
Closer to MOP & ContextL: http://common-lisp.net/project/closer/
From: Harald Hanche-Olsen
Subject: Re: A Quickstart to Common Lisp
Date: 
Message-ID: <pco8x9cwyzc.fsf@shuttle.math.ntnu.no>
+ Frank Buss <··@frank-buss.de>:

| As an unbiased reader, I always knew that Lisp is an acronym for
| "Lots of Irritating Superfluous Parentheses", so this language is
| not for me :-)

Oh.  I thought it was one of those recursive acronyms:
LISP Is Seriously Powerful.  Or LISP Is Superbly Programmable.
Or LISP Is Sexprs Proliferating.  Or whatever.

-- 
* Harald Hanche-Olsen     <URL:http://www.math.ntnu.no/~hanche/>
- It is undesirable to believe a proposition
  when there is no ground whatsoever for supposing it is true.
  -- Bertrand Russell
From: Matthew Swank
Subject: Re: A Quickstart to Common Lisp
Date: 
Message-ID: <pan.2007.07.20.05.03.52.812100@c.net>
On Thu, 19 Jul 2007 09:55:08 +0200, Frank Buss wrote:

> Pascal Costanza wrote:
> 
>> Another article popped up: 
>> http://www.builderau.com.au/program/soa/A-Quickstart-to-Common-Lisp/0,339024614,339280188,00.htm
> 
> Looks like no obvious bugs, but no interesting things to attract newcomers
> and at the second page there is a line like this:
> 
> (do ((i 0 (+ 1 i))) ((> i 10)) (print i))
> 
> As an unbiased reader, I always knew that Lisp is an acronym for "Lots of
> Irritating Superfluous Parentheses", so this language is not for me :-)

He also conflates macros and functions: 

"These two [do- forms] are both specialised[sic] versions of the DO
function, which works like a combination of a while and a for in other
languages. It has three branches: the loop variable definition, stopping
condition and the body of the statement"


Matt
-- 
"You do not really understand something unless you
 can explain it to your grandmother." - Albert Einstein.