Parsing With Haskell (Part 1): Lexing With Alex
Parsing with Haskell (Part 1): Lexing with Alex This is the first of the two parts of our Parsing with Haskell series. Looking for the second part instead? You can find it here. This two-part tutorial will look into two tools often used together by Haskellers to parse programs: Alex and Happy. We’ll use them to parse a small programming language from scratch. Both Alex and Happy are industrial-strength tools powerful enough to parse even Haskell itself. At […]