Skip to content

Compiler for the Gren programming language

License

Notifications You must be signed in to change notification settings

gren-lang/compiler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f090f1e · Mar 22, 2025
Mar 16, 2025
Nov 11, 2024
Jan 24, 2025
Sep 26, 2024
Mar 16, 2025
Nov 11, 2024
Mar 22, 2025
Jan 25, 2025
Jan 24, 2025
Jan 24, 2025
Oct 24, 2024
Oct 28, 2024
Feb 24, 2022
Oct 29, 2024
Oct 24, 2024
Jun 22, 2024
Dec 13, 2024
Jan 3, 2025
Feb 3, 2025
Feb 12, 2025
Feb 12, 2025
Sep 26, 2024
Feb 12, 2025
Mar 22, 2025

Repository files navigation

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

This project uses devbox for managing dependencies required to build the project. If you don't want to use devbox, you can find a list of the requried dependencies and the commands for building the compiler in devbox.json.

Since Gren 0.4 the compiler is implemented in two parts. The Gren-part of the compiler lives in src, and once built it acts as a frontend to the Haskell-part of the compiler.

The end goal is for the entire compiler to be written in Gren.

To build the compiler:

  1. Use devbox run prepare-deps to setup the required dependencies. The first time you run this it might take a while.
  2. Build the compiler with devbox run build. This will create a cli.js file and a gren executable in the project root directory.

You can now execute the Gren-part of the compiler with node ./cli.js or just ./cli.js. This either requires node to be installed, or that you've entered the development shell by using devbox shell. The Gren-part of the compiler will by default download a pre-built binary of the Haskell-part from Github. If you want to run the compiler with the Haskell-part you've just built, set the path to the Haskell-binary in a GREN_BIN environment variable, like: GREN_BIN=$PWD/gren node ./cli.js.

You might also want to study the scripts defined in devbox.json. You can execute one of these scripts by running devbox run <script_name>.