Re: [ANN] clj-peg v0.6 released

2010-01-08 Thread Michał Kwiatkowski
On Fri, Jan 8, 2010 at 4:38 PM, Richard Lyman wrote: > Currently I'm only providing the code in AOT form. If the JAR is on your > classpath everything in the manual works just fine. > > Did that answer your question? Yes, thank you! Cheers, mk -- You received this message because you are subscr

Re: [ANN] clj-peg v0.6 released

2010-01-08 Thread Richard Lyman
Currently I'm only providing the code in AOT form. If the JAR is on your classpath everything in the manual works just fine. Did that answer your question? -Rich 2010/1/7 Michał Kwiatkowski > On Mon, Jan 4, 2010 at 11:27 PM, Richard Lyman > wrote: > > This project adds support in Clojure for

Re: [ANN] clj-peg v0.6 released

2010-01-07 Thread Michał Kwiatkowski
On Mon, Jan 4, 2010 at 11:27 PM, Richard Lyman wrote: > This project adds support in Clojure for Parsing Expression Grammars. > You'll be able to write pseudo-ebnfs directly in your Clojure code. Sounds nice, but where's the source code? Cheers, mk -- You received this message because you are s

Re: [ANN] clj-peg v0.6 released

2010-01-07 Thread Stefan Tilkov
On Jan 5, 2010, at 5:59 PM, Richard Lyman wrote: > For now I'd rather be compensated if someone were planning on using clj-peg > commercially. I'm not sure how much I'd charge for a commercial-friendly > license, and I don't have an automated process for handling billing and > production of a d

Re: [ANN] clj-peg v0.6 released

2010-01-05 Thread Richard Lyman
For now I'd rather be compensated if someone were planning on using clj-peg commercially. I'm not sure how much I'd charge for a commercial-friendly license, and I don't have an automated process for handling billing and production of a differently licensed product, so I'm reluctant to move that di

Re: [ANN] clj-peg v0.6 released

2010-01-05 Thread Stefan Tilkov
Richard, can you elaborate on the license? The license page says "Permission is granted to use and redistribute this software except for commercial use […]" Stefan -- Stefan Tilkov, http://www.innoq.com/blog/st/ On 04.01.2010, at 23:27, Richard Lyman wrote: > All, > > This project adds sup

[ANN] clj-peg v0.6 released

2010-01-04 Thread Richard Lyman
All, This project adds support in Clojure for Parsing Expression Grammars. You'll be able to write pseudo-ebnfs directly in your Clojure code. Currently, this... Expr <- [Sum $] Sum <- [Product (* [SumOp Product])] Product <- [Value (* [ProductOp Value])] Value <- (| Num Sum)