Compiler for the Gren programming language
Go to file
2023-10-26 09:21:49 +02:00
.github Update GHC 2023-08-20 21:59:41 +02:00
builder/src Fix problem with nested modules. 2023-06-05 22:24:07 +02:00
compiler/src typo: *LEADING* NEWLINE 2023-10-26 09:21:49 +02:00
docs Add docs for kernel object properties and optimize 2023-06-24 06:57:00 -04:00
hints gren slack → zulip 2022-05-30 13:17:37 +02:00
terminal disable ansi printing when NO_COLOR is set 2023-08-30 14:26:46 +02:00
tests test for dissalow multiline string without newline 2023-10-25 15:41:53 +02:00
.gitignore Forbid make output for package type projects 2022-12-29 16:51:49 +01:00
CONTRIBUTING.md Add contributing guidelines. 2022-09-02 10:24:33 +02:00
CONTRIBUTORS Add BendingBender to contributors 2023-01-12 16:26:28 +01:00
gren.cabal Bump version to 0.3.0 2023-06-13 21:02:25 +02:00
LICENSE Change license. 2022-02-24 12:38:48 +01:00
README.md Fix spelling 2023-02-16 16:36:08 +01:00
ROADMAP.md Update roadmap. 2023-06-13 21:02:10 +02:00

Gren

Compiler for Gren, a pure functional programming language that is easy to learn, but powerful in use.

There are easier ways to install the compiler than compiling the source, you might want to read the setup instructions.

Build from source

The Gren compiler is written in Haskell, so to build from source you need to have GHC 9.4 (Haskell compiler) and Cabal 3.8 (haskell build tool) installed on your system.

You can install these using ghcup. By default, ghcup will install an older version of Haskell and Cabal, so you can install and set the required versions using ghcup tui.

Compiling and installing the project should just be a matter of cabal install, after which you should be able to run the gren command from your command line.

Read the CONTRIBUTING.md file for some helpful commands for working on the compiler itself.