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!
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:
- 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.
- Make the generated Erlang code readable.
- 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.
- Basic support for separate compilation. Use together with
- 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 theErlang
namespace)
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:
- samples/ — Examples of using the FFI, concurrency etc.
- www.typedtext.io (Source) — Website written in Idris 2, running on the Erlang VM.
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:
- From Erlang source code — Easiest way to get started. Note: Idris 2 running on Erlang is currently much slower than running on Chez Scheme
- From Chez Scheme bootstrap — Recommended installation method.
- Using an existing
idris2
executable — Recommended if you want to contribute toIdris2-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
.
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:
git clone https://github.com/chrrasmussen/Idris2-Erlang
cd Idris2-Erlang
git checkout tags/v0.2.1-alpha.1 -b v0.2.1-alpha.1
rebar3 escriptize
The Escript executable is built to _build/default/bin/idris2erl
.
This installation method requires Chez Scheme to be installed.
Steps:
git clone https://github.com/chrrasmussen/Idris2-Erlang
cd Idris2-Erlang/idris2
make bootstrap SCHEME=chez
(Replacechez
with the name of your installed version of Chez Scheme)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
.
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:
git clone https://github.com/chrrasmussen/Idris2-Erlang
cd Idris2-Erlang/idris2
make all
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
.
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
.
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:
- Overview of data types that have a mapping between Idris 2 and Erlang
- Codegen-specific directives
- Intermediate representations
Samples:
- A Crash Course in Idris 2
- This tutorial assumes some existing experience with functional programming.
- Type-Driven Development with Idris by Edwin Brady
- The book was written with Idris 1 in mind, but the knowledge is transferable to Idris 2. This document describes what changes are necessary to run the code samples from the book in Idris 2.
- This book is how I got started with Idris :-)
- The Idris 2 README.md lists some talks given by Edwin Brady
- These videos are mainly presenting what's new in Idris 2, but they may provide motivation for why Idris 2 is an interesting language.
The Idris website contains links to locations where you can find the Idris community.
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.