What is the difference? > (let ([stx #'(1 (+ 3 4) 5 6)]) (equal? (syntax->list stx) (syntax-e stx))) #t Or syntax->list == (lambda (x) (let ([res (syntax-e x)]) (if (list? x) x #f))) ?
-- Roman Klochkov
____________________ Racket Users list: http://lists.racket-lang.org/users

