From: Gustavo Guerra
Subject: how does loop work
Date: 
Message-ID: <Pine.GSO.4.05.10106021856450.16183-100000@mega>
I'm a newbie working only for about 3 weeks in Common Lisp (but I used
Scheme for about 4 months last year)

I have Paul Graham's ANSI Common Lisp, but I don't really understand
the way he explains the loop macro

Can some one try to explain me or tell me some site with that information.

Thanks
by gugu

From: Richard Krush
Subject: Re: how does loop work
Date: 
Message-ID: <slrn9hicab.1ut.richard_k@localhost.localnet>
On Sat, 2 Jun 2001 19:09:06 +0100, Gustavo Guerra <····@mega.ist.utl.pt> wrote:
>   I'm a newbie working only for about 3 weeks in Common Lisp (but I used
>   Scheme for about 4 months last year)
>   
>   I have Paul Graham's ANSI Common Lisp, but I don't really understand
>   the way he explains the loop macro
>   
>   Can some one try to explain me or tell me some site with that information.

Maybe these links will help a bit:
http://www.xanalys.com/software_tools/reference/HyperSpec/Body/mac_loop.html
http://www.xanalys.com/software_tools/reference/HyperSpec/Body/sec_6-1.html
http://www.cs.cmu.edu/Web/Groups/AI/html/cltl/clm/node235.html#LOOP

Hope this helps,
 rk
From: Kent M Pitman
Subject: Re: how does loop work
Date: 
Message-ID: <sfwu21yu3iu.fsf@world.std.com>
Gustavo Guerra <····@mega.ist.utl.pt> writes:

> I'm a newbie working only for about 3 weeks in Common Lisp (but I used
> Scheme for about 4 months last year)

Ola', Gustavo.  Bemvindo ao mundo do Lisp!

> I have Paul Graham's ANSI Common Lisp, but I don't really understand
> the way he explains the loop macro
> 
> Can some one try to explain me or tell me some site with that information.

You don't make it clear whether you're trying to figure out how to use
LOOP or to implement LOOP.  I'm guessing you just want to use it.  The
following might help:

In the Common Lisp HyperSpec,  at

  http://www.xanalys.com/software_tools/reference/HyperSpec/FrontMatter/

go into the Symbol Index and look for the symbol entry for LOOP, which has 
detailed syntax information.  Also, go into the Chapter Index and look for
Chapter 6.1 (The LOOP Facility), which goes through conceptual discussions
and offers examples.