Elixir (programming language)


Elixir is a functional, concurrent, high-level general-purpose programming language that runs on the BEAM virtual machine, which is also used to implement the Erlang programming language. Elixir builds on top of Erlang and shares the same abstractions for building distributed, fault-tolerant applications. Elixir also provides tooling and an extensible design. The latter is supported by compile-time metaprogramming with macros and polymorphism via protocols.
The community organizes yearly events in the United States, Europe, and Japan, as well as minor local events and conferences.

History

José Valim created the Elixir programming language as a research and development project at Plataformatec. His goals were to enable higher extensibility and productivity in the Erlang VM while maintaining compatibility with Erlang's ecosystem.
Elixir is aimed at large-scale sites and apps. It uses features of Ruby, Erlang, and Clojure to develop a high-concurrency and low-latency language. It was designed to handle large data volumes. Elixir is also used in telecommunications, e-commerce, and finance.
In 2021, the Numerical Elixir effort was announced with the goal of bringing machine learning, neural networks, GPU compilation, data processing, and computational notebooks to the Elixir ecosystem.

Features

Examples

The following examples can be run in an iex shell or saved in a file and run from the command line by typing elixir .
Classic Hello world example:

iex> IO.puts
Hello World!

Pipe operator:

iex> "Elixir" |> String.graphemes |> Enum.frequencies
iex> % |> Map.get |> Enum.map
iex> % |> Map.get |> Enum.map |> Enum.sum
30

Pattern matching :

iex> % = %
iex> x
iex> =
iex> rest

Pattern matching with multiple clauses:

iex> case File.read do
iex> -> IO.puts
iex> -> IO.puts
iex> end

List comprehension:

iex> for n <- 1..5, rem 1, do: n*n

Asynchronously reading files with streams:

1..5

Multiple function bodies with guards:

def fib when n in, do: n
def fib, do: fib + fib

Relational databases with the Ecto library:

schema "weather" do
field :city # Defaults to type :string
field :temp_lo, :integer
field :temp_hi, :integer
field :prcp, :float, default: 0.0
end
Weather |> where |> order_by |> limit |> Repo.all

Sequentially spawning a thousand processes:

for num <- 1..1000, do: spawn fn -> IO.puts end

Asynchronously performing a task:

task = Task.async fn -> perform_complex_action end
other_time_consuming_action
Task.await task