Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 714 Bytes

README.md

File metadata and controls

31 lines (20 loc) · 714 Bytes

Simple monadic parser combinators in OCaml based on http://www.cs.nott.ac.uk/~pszgmh/monparsing.pdf1.

Used for my own devices.

Dependencies

  • opam
    • core
    • ppx_let
  • dune

Installation

First install all the dependencies, then do the following:

git clone https://gitlab.com/kyepskee/mpc
cd mpc
eval $(opam env) # evaluate opam context (if not already evaluated)
dune install

Sources/inspirations