
15 Feb
2005
15 Feb
'05
8:20 a.m.
On 15 February 2005 10:36, Johan Glimming wrote:
I want to implement a little algebraic specification language in Haskell, and I have a working C implementation available which uses yacc/flex.
What is the best way of replacing yacc/bison and (f)lex when migrating the project into Haskell?
There are yacc & lex equivalents for Haskell, in the form of Happy (http://www.haskell.org/happy) and Alex (http://www.haskell.org/alex) respectively. Cheers, Simon