From: Grant Rettke (grettke at acm.org) Date: Sun Jan 17 12:58:27 EST 2010 |
|
On Sun, Jan 17, 2010 at 8:22 AM, johny seventy <johnyseventy at hotmail.com> wrote: > (define-syntax foo > (syntax-rules () > ((_ (x y)) > #t))) > (foo '(a b)) Per Laurent' point, (foo '(a b)) is the same as (foo (quote a b)) so a => foo and b=> (quote a b)
Posted on the users mailing list. |
|