Re: [racket-users] define-syntax question

2017-03-13 Thread NeverTooOldToCode
On Monday, March 13, 2017 at 1:35:12 PM UTC+1, Matthias Felleisen wrote: > > On Mar 13, 2017, at 7:06 AM, NeverTooOldToCode wrote: > > > > From Greg Hendershott's Fear of Macros, section 3.3: > > > >> (define-syntax (show-me stx) > >(print stx) > >#'(void)) > >> (show-me '(+ 1 2)) > > >

Re: [racket-users] define-syntax question

2017-03-13 Thread Matthias Felleisen
> On Mar 13, 2017, at 7:06 AM, NeverTooOldToCode wrote: > > From Greg Hendershott's Fear of Macros, section 3.3: > >> (define-syntax (show-me stx) >(print stx) >#'(void)) >> (show-me '(+ 1 2)) > > # > > Why does the syntax object stx include "show-me"?