On Dec 4, 2012, at 8:08 PM, Carl Eastlund wrote: > The following program works just fine: > > #lang racket > (define-syntax (foo stx) #`(quote-syntax #,stx)) > (list foo)
#lang racket (define-syntax (foo stx) #'7) (list foo) Hmph.
____________________ Racket Users list: http://lists.racket-lang.org/users

