Elixir is a programming language built on top of the Erlang VM. As Erlang, it is a functional language built to support distributed, fault-tolerant, non-stop applications with hot code swapping.
Elixir is also dynamic typed but, differently from Erlang, it is also homoiconic, allowing meta-programming via macros. Elixir also supports polymorphism via protocols (similar to Clojure's), dynamic records and provides a reference mechanism.
Finally, Elixir and Erlang share the same bytecode and data types. This means you can invoke Erlang code from Elixir (and vice-versa) without any conversion or performance hit. This allows a developer to mix the expressiveness of Elixir with the robustness and performance of Erlang.
You can run and learn about Elixir in the Getting Started guide.
But if you just want to try it out, clone this repository to your machine, compile and test it:
$ git clone https://github.com/elixir-lang/elixir.git
$ cd elixir
$ make test
$ bin/elixir -v
Elixir 0.9.0.dev
If tests pass, you are ready to move on to the Getting Started guide or to try Interactive Elixir by running: bin/iex
in your terminal.
However, if tests fail, it is likely you have an outdated Erlang version (Elixir requires Erlang R15B or later). You can check your Erlang version by calling erl
in the command line. You will see some information as follow:
Erlang R15B (erts-5.8.4) [source] [64-bit] [smp:2:2] [rq:2] [async-threads:0] [hipe] [kernel-poll:false]
If you have the correct version and tests still fail, feel free to open an issue.
If you want to contribute, the code is organized as follows:
-
include
,src
- Both directories contain part of the source code written in Erlang.yecc
is used as the parser; -
lib
- Contains Elixir's STDLIB, written in Elixir; -
test/elixir
- Tests for Elixir's STDLIB, written in Elixir. For this purpose, Elixir ships with a small unit test library calledExUnit
; -
test/erlang
- Contains tests for Elixir, written in Erlang. Usually, just internal stuff is tested here. The preferred way to test is in Elixir itself.
We usually keep a list of features and bugs in the issue tracker.
- #elixir-lang on freenode IRC
- Getting Started Guide
- Mailing list
- Issue tracker
- Textmate Bundle for Elixir
- Vim Elixir
Copyright (c) 2012 Plataformatec. See LICENSE file.