/Idris2-Erlang

Erlang code generator for Idris 2

Primary LanguageIdrisOtherNOASSERTION

Idris2-Erlang

Ubuntu CI macOS 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

  • Make it easy to interoperate with Erlang.
  • Type-safe: It should be difficult to accidentally introduce run-time errors, even when doing interop with Erlang.

Non-goals

  • Make the generated Erlang code readable.

Currently supported functionality

  • Compile Idris 2 programs to Erlang source code or compile to BEAM (via erlc)
    • Basic support for separate compilation. Use together with mix_idris2 to automatically recompile changed modules.
  • Erlang interop
    • Almost all of Erlang's data types have a corresponding type in Idris.
    • Call almost any Erlang function from Idris.
    • Export Idris functions to be called from Erlang code.
    • Includes decoding functions to safely convert untyped Erlang values to typed Idris values.
  • Supports most of the functionality provided by the base package. (Currently a few modules are placed in the Erlang namespace)

Basic usage

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

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.

On Windows, you may need to install via MSYS2 (https://www.msys2.org/). On Windows older than Windows 8, you may need to set an environment variable OLD_WIN=1 or modify it in idris2/config.mk.

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 main branch.

Steps:

  1. git clone https://github.com/chrrasmussen/Idris2-Erlang
  2. cd Idris2-Erlang
  3. git checkout tags/v0.2.1-alpha.1 -b 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 locations 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.