Re: [racket-users] announcement: racket-peg release 0.2

2018-04-18 Thread rain1
On 2018-04-14 16:57, David Storrs wrote: Sounds interesting. Is there any documentation on it aside from the README? Yes, It's documented here http://docs.racket-lang.org/peg/index.html and the examples in the repo should be a good resource for using the library too. Don't hesitate to ma

Re: [racket-users] announcement: racket-peg release 0.2

2018-04-18 Thread David Storrs
Sounds interesting. Is there any documentation on it aside from the README? On Fri, Apr 13, 2018 at 1:26 PM, wrote: > hello! > > I have created a PEG parser library for racket. It's basically regex turned > up to 11. > It lets you write parsers like this: > > (define-peg marked-palindrome >

[racket-users] announcement: racket-peg release 0.2

2018-04-13 Thread rain1
hello! I have created a PEG parser library for racket. It's basically regex turned up to 11. It lets you write parsers like this: (define-peg marked-palindrome (or "m" (and "1" marked-palindrome "1") (and "0" marked-palindrome "0"))) or like this: #lang peg expr <-