compiler/README.md

14 lines
608 B
Markdown
Raw Normal View History

2022-02-11 15:00:03 +03:00
# Gren
2016-12-20 00:55:00 +03:00
2022-05-19 13:44:09 +03:00
Compiler for the Gren programming language.
If you wish to install the compiler, you might want to read the [setup instructions](https://gren-lang.org/install).
2022-05-19 13:44:09 +03:00
## Build from source
2022-05-19 13:44:09 +03:00
Then Gren compiler is written in Haskell, so to build from source you need to have GHC 9.2.2 (haskell compiler) and cabal 3.6 (haskell build tool) installed on your system.
2022-05-19 13:44:09 +03:00
Compiling the project should just be a matter of running `cabal build`, or `cabal install` if you wish to install the compiler on your machine.
2022-05-19 13:44:09 +03:00
Read the [CONTRIBUTING.md]() file for some helpful commands for working on the compiler itself.