• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

_cabal_deps/H03-May-2022-

data/H09-Sep-2001-4,5702,554

doc/H09-Sep-2001-4,9274,156

examples/H09-Sep-2001-3,9833,082

src/H09-Sep-2001-7,1555,657

tests/H07-May-2022-3,4352,781

ANNOUNCEH A D09-Sep-2001893 2817

CHANGESH A D09-Sep-20018.6 KiB267183

LICENSEH A D09-Sep-20011.4 KiB3124

MakefileH A D09-Sep-20011.6 KiB5646

README.mdH A D09-Sep-20011 KiB3625

Setup.hsH A D09-Sep-200146 32

TODOH A D09-Sep-20011.6 KiB6035

cabal.projectH A D03-May-202212 21

happy.cabalH A D09-Sep-20015.6 KiB199186

happy.specH A D09-Sep-20011.7 KiB6454

test.hsH A D09-Sep-2001118 53

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