Difference between revisions of "Alex"

From HaskellWiki
Jump to navigation Jump to search
(A lexer generator for Haskell)
 
m (Adding category compiler tools)
Line 1: Line 1:
 
== Alex ==
 
== Alex ==
  +
[[Category:Tools: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.
 
=== Code Samples ===
 
=== Code Samples ===

Revision as of 18:29, 13 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.

Code Samples

 To be done.