chlablak / platinum-parsing

All-around tools for compilation development
http://www.platinum-parsing.org/
BSD 3-Clause "New" or "Revised" License
1 stars 0 forks source link
cli compilation framework parsing platinum pp tools

platinum-parsing

www.platinum-parsing.org

Platinum Parsing is an all-around solution for conceiving, developping and building a compiler or an interpreter, or just a part of it. It's composed of two parts: the Framework, written in Haskell, and the CLI (Command Line Interface), exposing the functionalities of the Framework.

Features

* Platinum Parsing is a recent project aimed to grow, you can find development axis in the Issues menu.

Getting started

Platinum Parsing is built with the famous Haskell Tool Stack, you will need to install it before continuing.

NB: if you prefer to use cabal instead of stack, feel free to do so.

Platinum Parsing is available on Hackage, thus you can install it with the command:

  $ stack install platinum-parsing

This will cause the CLI to be accessible in your terminal, try: $ pp --help

If you want to use the Framework directly in your Haskell project, add to your <project-name>.cabal file the following line, and run a $ stack build afterwards:

  build-depends: platinum-parsing

Last option is to clone this repository and build the project by yourself:

  $ git clone git@github.com:chlablak/platinum-parsing.git
  or
  $ git clone https://github.com/chlablak/platinum-parsing.git

  $ cd platinum-parsing
  $ stack init
  $ stack build

Further reading

Contributing

If you have any question, proposition or contribution, feel free to use the Issues menu.