Difference between revisions of "Frown"

From HaskellWiki
Jump to navigation Jump to search
(Stub for Frown)
 
Line 1: Line 1:
 
== Frown ==
 
== Frown ==
   
[[Category:Compiler Tools]]
+
[[Category:Compiler tools]]
   
 
Frown is an LALR(k) parser generator for Haskell 98 written in Haskell 98.
 
Frown is an LALR(k) parser generator for Haskell 98 written in Haskell 98.

Revision as of 20:37, 25 February 2006

Frown

Frown is an LALR(k) parser generator for Haskell 98 written in Haskell 98.

Its main features:

  • Time and space efficient
  • The parsers are purely functional, table-free parsers, with staates encoded via mutually recursive functions

For more information consult the Frown site.

This article is a stub. You can help by expanding it.