From: JP Massar
Subject: Source for LOOP macro
Date: 
Message-ID: <ovqdc1ppa2c1drainbmu7tibmi1tapv4kq@4ax.com>
Is there a web accessible zip file or ftp archive which has exactly 
a source implementation of LOOP ?

Thanks.

From: Eric Lavigne
Subject: Re: Source for LOOP macro
Date: 
Message-ID: <1120333550.741922.130020@g47g2000cwa.googlegroups.com>
>Is there a web accessible zip file or ftp
>archive which has exactly
>a source implementation of LOOP ?

google: loop.lisp

*** second result ***
http://clozure.com/cgi-bin/viewcvs.cgi/ccl/library/loop.lisp
From: JP Massar
Subject: Re: Source for LOOP macro
Date: 
Message-ID: <mk8gc1lhqjemrldv5mnulq0uhrvl517t9b@4ax.com>
On 2 Jul 2005 12:45:50 -0700, "Eric Lavigne" <············@gmail.com>
wrote:

>>Is there a web accessible zip file or ftp
>>archive which has exactly
>>a source implementation of LOOP ?
>
>google: loop.lisp

That's about the only thing I didn't think to try...

>
>*** second result ***
>http://clozure.com/cgi-bin/viewcvs.cgi/ccl/library/loop.lisp

Thanks!
From: Rob Warnock
Subject: Re: Source for LOOP macro
Date: 
Message-ID: <jeidnRw3nIe691rfRVn-tw@speakeasy.net>
JP Massar  <······@alum.mit.edu> wrote:
>Is there a web accessible zip file or ftp archive which has exactly 
>a source implementation of LOOP ?

If something as big as the CMUCL version will do...

    <http://common-lisp.net/cgi-bin/viewcvs.cgi/*checkout*/
     src/code/loop.lisp?rev=HEAD&cvsroot=cmucl&content-type=text/plain>


-Rob

-----
Rob Warnock			<····@rpw3.org>
627 26th Avenue			<URL:http://rpw3.org/>
San Mateo, CA 94403		(650)572-2607
From: drewc
Subject: Re: Source for LOOP macro
Date: 
Message-ID: <p1_xe.152796$El.39575@pd7tw1no>
JP Massar wrote:
> Is there a web accessible zip file or ftp archive which has exactly 
> a source implementation of LOOP ?
> 
> Thanks.

There is also SACLA LOOP :

http://homepage1.nifty.com/bmonkey/lisp/sacla/html/lisp/loop.lisp.html

which has nifty syntax highlighting, but the gist of it is :

(defmacro loop (&rest forms)
   (if (symbolp (car forms))
       `(extended-loop ,@forms)
       `(simple-loop ,@forms)))

:)

Sacla is a "A partical Common Lisp implementation written in Common 
Lisp"[sic]. It's a good read :

http://homepage1.nifty.com/bmonkey/lisp/sacla/index-en.html

cheers
-- 
Drew Crampsie
drewc at tech dot coop
"Never mind the bollocks -- here's the sexp's tools."
	-- Karl A. Krueger on comp.lang.lisp