Idris2-Erlang

Ubuntu CImacOS CINix CI

Erlang code generator for Idris 2. Currently this repository includes a full copy of the Idris 2 compiler, but at some point I want to make this repository into a standalone code generator.

Note that this project is still work in progress. Feedback and contributions are appreciated!

About Idris 2

Idris 2 is a purely functional programming language with first class types. The development of Idris 2 is led by Edwin Brady. More information about Idris 2 is available at:

About the Erlang code generator

Goals

Non-goals

Currently supported functionality

Basic usage

Create a file called Main.idr with the following content:

module Main

main : IO ()
main = putStrLn "Hello Joe"

Run the Idris 2 program via generated Erlang code: idris2erl --exec main Main.idr

More code samples:

Installation

To run the generated Erlang code, Erlang OTP 21.2 or newer is recommended.

There are three alternative methods to install Idris 2 with the Erlang code generator:

  1. From Erlang source code — Easiest way to get started. Note: Idris 2 running on Erlang is currently much slower than running on Chez Scheme
  2. From Chez Scheme bootstrap — Recommended installation method.
  3. Using an existing idris2 executable — Recommended if you want to contribute to Idris2-Erlang.

The built executable is named idris2erl. This is done to avoid clashing with an existing installation of idris2. idris2erl is configured to use Erlang as the default code generator.

Alternative 1: From Erlang source code

This repository contains a rebar3 project that can build a standalone Escript executable. The Escript contains the libraries and can be freely moved around. The Erlang run-time needs to be available to run this Escript.

The generated Erlang source files are only included in specific releases, and not in the master branch.

Steps:

  1. git clone https://github.com/chrrasmussen/Idris2-Erlang
  2. cd Idris2-Erlang
  3. git checkout v0.2.1-alpha.1
  4. rebar3 escriptize

The Escript executable is built to _build/default/bin/idris2erl.

Alternative 2: From Chez Scheme bootstrap

This installation method requires Chez Scheme to be installed.

Steps:

  1. git clone https://github.com/chrrasmussen/Idris2-Erlang
  2. cd Idris2-Erlang/idris2
  3. make bootstrap SCHEME=chez (Replace chez with the name of your installed version of Chez Scheme)
  4. make install

This will install the idris2erl executable, libraries and support files into $HOME/.idris2erl. For easy access, add $HOME/.idris2erl/bin directory to your $PATH.

Alternative 3: Using an existing idris2 executable

This installation method requires Chez Scheme to be installed, and that you have idris2 available in $PATH. To install the official version of Idris 2, see Idris 2's installation instructions.

Steps:

  1. git clone https://github.com/chrrasmussen/Idris2-Erlang
  2. cd Idris2-Erlang/idris2
  3. make all
  4. make install

This will install the idris2erl executable, libraries and support files into $HOME/.idris2erl. For easy access, add $HOME/.idris2erl/bin directory to your $PATH.

Editor support

Idris 2 supports interactive editing. See Idris 2's download page for a list of supported editors.

In my experience, the Idris 1 extensions for Visual Studio Code and Atom mostly works for Idris 2. After installing the extension, you need to change location of the Idris executable to point to idris2erl.

Documentation

Erlang code generator

The Idris 2 libraries tries to include documentation for its functions and data types. The documentation can be accessed using the :doc command in the Idris 2 REPL.

References:

Samples:

Learning Idris 2

Community

The Idris website contains links to where you can find the Idris community.

License

The Idris 2 compiler is released under the 3-clause BSD license.

The Erlang code generator is derived from the Idris 2 compiler and is released under the 3-clause BSD license.


Footnotes:

[1] bitstring is not supported as a separate data type. Some data types, such as tuples and functions, include a size/arity in their names: These data types are currently limited to a maximum size/arity of 8.