Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
_cabal_deps/ | H | 03-May-2022 | - | |||
data/ | H | 09-Sep-2001 | - | 4,570 | 2,554 | |
doc/ | H | 09-Sep-2001 | - | 4,927 | 4,156 | |
examples/ | H | 09-Sep-2001 | - | 3,983 | 3,082 | |
src/ | H | 09-Sep-2001 | - | 7,155 | 5,657 | |
tests/ | H | 07-May-2022 | - | 3,435 | 2,781 | |
ANNOUNCE | H A D | 09-Sep-2001 | 893 | 28 | 17 | |
CHANGES | H A D | 09-Sep-2001 | 8.6 KiB | 267 | 183 | |
LICENSE | H A D | 09-Sep-2001 | 1.4 KiB | 31 | 24 | |
Makefile | H A D | 09-Sep-2001 | 1.6 KiB | 56 | 46 | |
README.md | H A D | 09-Sep-2001 | 1 KiB | 36 | 25 | |
Setup.hs | H A D | 09-Sep-2001 | 46 | 3 | 2 | |
TODO | H A D | 09-Sep-2001 | 1.6 KiB | 60 | 35 | |
cabal.project | H A D | 03-May-2022 | 12 | 2 | 1 | |
happy.cabal | H A D | 09-Sep-2001 | 5.6 KiB | 199 | 186 | |
happy.spec | H A D | 09-Sep-2001 | 1.7 KiB | 64 | 54 | |
test.hs | H A D | 09-Sep-2001 | 118 | 5 | 3 |
README.md
1# Happy 2 3Happy is a parser generator for Haskell 98 (and later). 4 5[![Build Status](https://secure.travis-ci.org/simonmar/happy.svg?branch=master)](http://travis-ci.org/simonmar/happy) 6 7* https://www.haskell.org/happy/ 8* http://hackage.haskell.org/package/happy 9 10Happy is built using Cabal. First install GHC, then: 11``` 12 $ cabal install 13``` 14If you obtained the development version from https://github.com/simonmar/happy/, 15install via: 16``` 17 $ make sdist && cabal install 18``` 19 20Complete documentation can be found in the directory 'doc', in 21DocBook XML format. To format the documentation, the DocBook-Tools 22suite (see http://wiki.docbook.org/DocBookTools) 23provides all the bits & pieces you need. Alternatively, pre-formatted 24documentation is available from Happy's homepage (URL above). 25 26The directory 'examples' contains some example parsers that use Happy. 27 28For information on copying and distributing this program, see the file 29LICENSE in this directory. 30 31Bugs should be reported at: https://github.com/simonmar/happy/issues 32 33Happy Parsing! 34 35Simon. 36