Re: Parsec style library

2009-02-04 Thread jim
Take a look at: http://clojure.googlegroups.com/web/monad-parser.clj It's the code from "Monadic Parsing in Haskell" written in Clojure. It'd have to be modified slightly to work with the new clojure.contrib.monads. But that would be easy to do. jim On Feb 3, 8:42 pm, sbkogs wrote: > Parsec

Re: Parsec style library

2009-02-04 Thread James Reeves
On Feb 4, 2:42 am, sbkogs wrote: > If anybody is working on similar library, please drop me a line.  I > have some bandwidth to spend towards such work/fun. I created some simple LL parser tools for my Rend library: http://github.com/weavejester/rend/blob/43f882a9474fb8662007e5a5d0c50648fc0caa7

Re: Parsec style library

2009-02-04 Thread Dan Larkin
On Feb 3, 2009, at 9:42 PM, sbkogs wrote: > > Parsec is a very powerful parsing library for Haskell. I was mainly > attracted to Haskell because of this library (ala Pugs project which > used Parsec to create a Perl6 parser). > > I am wondering if there is an ongoing effort to write similar lib

Re: Parsec style library

2009-02-04 Thread Meikel Brandmeyer
Hi, Am 04.02.2009 um 05:24 schrieb Tom Faulhaber: Meikel Brandmeyer has been doing some work on one. Check it out at: http://kotka.de/projects/clojure/parser.html. I haven't looked at it too closely myself. Maybe Meikel will stop in and give you a feeling for how close/far it is from full Pars

Re: Parsec style library

2009-02-03 Thread Tom Faulhaber
Meikel Brandmeyer has been doing some work on one. Check it out at: http://kotka.de/projects/clojure/parser.html. I haven't looked at it too closely myself. Maybe Meikel will stop in and give you a feeling for how close/far it is from full Parsec. Tom On Feb 3, 6:42 pm, sbkogs wrote: > Parsec