Subject: Re: Wanted: Magic Lisp snippets
From: rpw3@rpw3.org (Rob Warnock)
Date: Fri, 11 Mar 2005 06:25:06 -0600
Newsgroups: comp.lang.lisp
Message-ID: <27idnTFj3sa_E6zfRVn-tQ@speakeasy.net>
GP lisper  <spambait@clouddancer.com> wrote:
+---------------
| <rpw3@rpw3.org> wrote:
| > Then you hit them with either this:
| >     (+ 1/3 1/4 1/5 1/6) => 19/20
| > or this:
| >     (+ 1/3 1/4 1/5 1/6 1/20) => 1
| 
|  (- 1 (+ 1/3 1/4 1/5 1/6))
+---------------

Well, in *that* case, just this [showing how CL:- allows &rest]:

   (- 1 1/3 1/4 1/5 1/6)  =>  1/20


-Rob

-----
Rob Warnock			<rpw3@rpw3.org>
627 26th Avenue			<URL:http://rpw3.org/>
San Mateo, CA 94403		(650)572-2607