Difference between revisions of "Alex"

From HaskellWiki
Jump to navigation Jump to search
m (Adding Stub template)
Line 1: Line 1:
 
== Alex ==
 
== Alex ==
[[Category:Compiler Tools]]
+
[[Category:Compiler tools]]
 
This is a lexer generator in the general style of 'lex', 'flex' etc. Naturally, as it generates and uses Haskell code there is much more that can be done in the actual lexer code. See http://www.haskell.org/alex for downloads and documentation.
 
This is a lexer generator in the general style of 'lex', 'flex' etc. Naturally, as it generates and uses Haskell code there is much more that can be done in the actual lexer code. See http://www.haskell.org/alex for downloads and documentation.
 
Alex may be used with [[Happy]] to do the normal first two stages of compilation, lexing and parsing.
 
Alex may be used with [[Happy]] to do the normal first two stages of compilation, lexing and parsing.

Revision as of 20:35, 25 February 2006

Alex

This is a lexer generator in the general style of 'lex', 'flex' etc. Naturally, as it generates and uses Haskell code there is much more that can be done in the actual lexer code. See http://www.haskell.org/alex for downloads and documentation. Alex may be used with Happy to do the normal first two stages of compilation, lexing and parsing.

Code Samples

 To be done.


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