[racket-users] Access pattern variable in macro

2017-10-03 Thread 'Shakin Billy' via Racket Users
hello, how do i access the pattern variable var at compile time (phase 1?) additional to an answer, could you point me to the right part of the documentation? i really couldn't find it. #lang racket (define inp (open-input-string "12+34")) (define-syntax (terminal stx) (syntax-case stx ()

Re: [racket-users] Access pattern variable in macro

2017-10-03 Thread Matthew Butterick
> On Oct 3, 2017, at 10:31 AM, 'Shakin Billy' via Racket Users > wrote: > > how do i access the pattern variable var at compile time (phase 1?) > additional to an answer, could you point me to the right part of the > documentation? i really couldn't find it. `var` isn't a `procedure?` during

Re: [racket-users] Access pattern variable in macro

2017-10-03 Thread 'Shakin Billy' via Racket Users
Thanks a lot. Am 03.10.2017 9:05 nachm. schrieb "Matthew Butterick" : > > > On Oct 3, 2017, at 10:31 AM, 'Shakin Billy' via Racket Users < > racket-users@googlegroups.com> wrote: > > > > how do i access the pattern variable var at compile time (phase 1?) > > additional to an answer, could you poi