Elixir (programming language)
Paradigm | multi-paradigm: functional, concurrent, distributed, process-oriented |
---|---|
First appeared | 2012 |
Stable release |
1.3.4 / 9 October 2016[1]
|
Typing discipline | dynamic, strong |
Platform | Erlang |
License | Apache License 2.0[2] |
Filename extensions | .ex, .exs |
Website |
elixir-lang |
Influenced by | |
Erlang, LFE,[3] Ruby, Clojure | |
Influenced | |
LFE |
Elixir is a functional, concurrent, general-purpose programming language that runs on the Erlang virtual machine (BEAM). Elixir builds on top of Erlang and shares the same abstractions for building distributed, fault-tolerant applications. Elixir also provides a productive tooling and an extensible design. The latter is supported by compile-time metaprogramming with macros and polymorphism via protocols.[4]
Elixir is successfully used in the industry by companies such as Pinterest[5] and Moz.[6] Elixir is also used for web development, by companies such as Bleacher Report and Inverse,[7] and for building embedded-systems.[8][9] The community organizes yearly events in both United States[10][11][12] and Europe[13] as well as minor local events and conferences.[14][15]
History
José Valim is the creator of the Elixir programming language, an R&D project of Plataformatec. His goals were to enable higher extensibility and productivity in the Erlang VM while keeping compatibility with Erlang's ecosystem.[16]
Features
- A language that compiles to bytecode for the Erlang Virtual Machine (BEAM)[17]
- Everything is an expression[17]
- Erlang functions can be called from Elixir without run time impact, due to compilation to Erlang bytecode, and vice versa
- Meta programming allowing direct manipulation of AST[17]
- Polymorphism via a mechanism called protocols. Like in Clojure, protocols provide a dynamic dispatch mechanism. However, this is not to be confused with multiple dispatch as Elixir protocols dispatch on a single type.
- Support for documentation via Python-like docstrings in the Markdown formatting language[17]
- Shared nothing concurrent programming via message passing (Actor model)[18]
- Emphasis on recursion and higher-order functions instead of side-effect-based looping
- Lightweight concurrency utilizing Erlang's mechanisms.[17]
- Lazy and async collections with streams
- Pattern matching[17]
- Unicode support and UTF-8 strings
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 <filename>
.
Classic Hello world example:
iex> IO.puts "Hello World!"
Hello World!
Comprehensions
iex> for n <- [1,2,3,4,5], rem(n,2) == 1, do: n*n
[1, 9, 25]
Pattern Matching
iex> [1, a] = [1, 2]
iex> a
2
iex> {:ok, [hello: a]} = {:ok, [hello: "world"]}
iex> a
"world"
Modules
defmodule Fun do
def fib(0), do: 0
def fib(1), do: 1
def fib(n) do
fib(n-2) + fib(n-1)
end
end
Sequentially spawning a thousand processes
for num <- 1..1000, do: spawn fn -> IO.puts "#{num * 2}" end
Asynchronously performing a task
task = Task.async fn -> perform_complex_action() end
other_time_consuming_action()
Task.await task
References
- ↑ "Release v1.3.4 · elixir-lang/elixir". GitHub.
- ↑ "elixir/LICENSE at master · elixir-lang/elixir · GitHub". GitHub.
- ↑ "Elixir issues mentioning LFE".
- ↑ "Elixir". José Valim. Retrieved 2013-02-17.
- ↑ "Introducing new open-source tools for the Elixir community". Retrieved 2016-08-01.
- ↑ "Unlocking New Features in Moz Pro with a Database-Free Architecture". Retrieved 2016-08-01.
- ↑ "What big projects use Elixir?". Retrieved 2016-08-01.
- ↑ "Elixir in production interview: Garth Hitchens". Retrieved 2016-08-01.
- ↑ "Nerves - Craft and deploy bulletproof embedded software in Elixir". Retrieved 2016-08-01.
- ↑ "ElixirConf 2014". Retrieved 2016-08-01.
- ↑ "ElixirConf 2015". Retrieved 2016-08-01.
- ↑ "ElixirConf". Retrieved 2016-08-01.
- ↑ "ElixirConf". Retrieved 2016-08-01.
- ↑ "Elixir LDN". Retrieved 2016-08-01.
- ↑ "EMPEX - Empire State Elixir Conference". Retrieved 2016-08-01.
- ↑ "Elixir - A modern approach to programming for the Erlang VM". Retrieved 2013-02-17.
- 1 2 3 4 5 6 "Elixir". Retrieved 2014-09-07.
- ↑ Loder, Wolfgang (12 May 2015). Erlang and Elixir for Imperative Programmers. "Chapter 16: Code Structuring Concepts", section title "Actor Model": Leanpub. Retrieved 7 July 2015.
External links
- Elixir language website
- Code on GitHub
- Elixir - A modern approach to programming for the Erlang VM video presentation
- Dave Thomas: "Programming Elixir 1.2: Functional → Concurrent → Pragmatic → Fun" (book)
- Simon St. Laurent, J. David Eisenberg: "Introducing Elixir" (book)
- Chris McCord: "Metaprogramming Elixir " (book)
- Joe Armstrong: "A Week with Elixir" (blog entry)