[racket-users] Re: ANN: syntax-parse-example 0.0

2017-05-18 Thread Jack Firth
On Wednesday, May 17, 2017 at 10:58:59 PM UTC-7, Ben Greenman wrote: > The syntax-parse-example package is a showcase of useful macros written using > syntax-parse. > https://pkgs.racket-lang.org/package/syntax-parse-example > > > > At the moment, the showcase is nearly empty ... but it's easy

Re: [racket-users] Re: Type Racket command-line #:ps causing type error

2017-05-18 Thread Vincent St-Amour
I just pushed a fix. Thanks for the report! Vincent On Wed, 17 May 2017 01:47:11 -0500, lu wrote: > > On Tuesday, May 16, 2017 at 12:47:37 AM UTC-7, kay wrote: > > Hi I feel this might be a bug, can anyone confirm or suggest a fix? > > > > Here's a minimal usage of `command-line` form: > > >

Re: [racket-users] How do you set the expander of a module to a module in the same file as the module whose expander you want to set

2017-05-18 Thread Matthew Flatt
I'm not sure why `(submod ...)` doesn't work in the usual place in a `syntax/module-reader` module body, but you can use #:language '(submod ...) instead. At Wed, 17 May 2017 20:02:30 -0700 (PDT), Vityou wrote: > If I have a module called reader, and I want to set its expander with >