For more than five years I’ve been a proficient Rubyist, working with Ruby day and night. For one year and a half now I’m working with PHP. PHP was actually my first Web programming language, back in 2004. I’m ok to work with PHP but I really miss the excitment of using a more developer-friendly language like Ruby.

Exploring new horizons

The good side of not working with Ruby anymore is that I’m opening to new languages: Go, Rust and Elixir.

I’ve followed their “Getting started” guides but the one that draw my attention the most was Elixir!

A promising tag line

Elixir language logo

I must admit I first heard of Elixir from José Valim, which is a much respected guy in the Ruby community. He started Elixir as an experiment and it’s now one of the best general-purpose programming language, in my opinion.

Elixir is a dynamic, functional language designed for building scalable and maintainable applications.

With Elixir, I will be able to:

  • still enjoy a dynamic language, with a Ruby-like syntax, as a bonus;
  • embrace functional programming, which is a new paradigm for me;
  • build scalable and maintainable applications.

A dynamic and elegant language

Elixir leverages the Erlang VM and its performance but without the weird syntax. Even better, it has a nice syntax, quite similar to Ruby’s one! I must admit, this is very important to me (and to every Rubyists, really)!

Following are some examples of Elixir code.

Protocols are a mechanism to achieve polymorphism in Elixir:

# Note the special module attribute "@doc" here
defprotocol Blank do
  @doc "Returns true if data is considered blank/empty"
  def blank?(data)
end

# Integers are never blank
defimpl Blank, for: Integer do
  def blank?(_), do: false
end

# Just empty list is blank
defimpl Blank, for: List do
  def blank?([]), do: true
  def blank?(_),  do: false
end

Elixir has a nice interactive shell:

# this is similar to Ruby's %w() syntax
iex> ~s(this is a string with "double" quotes, not 'single' ones)
"this is a string with \"double\" quotes, not 'single' ones"

# this is similar to Ruby's %i() syntax
iex> ~w(foo bar bat)a
[:foo, :bar, :bat]

An example that uses the Ecto library which provides an elegant DSL for writing database queries:

query = from w in Weather,
        where: w.prcp > 0,
        where: w.temp < 20,
        select: w

A functional language

I’ve always thought object-oriented programming was the only right way to code. Seeing that Elixir is a functional programming language made me change my mind about that.

Functional programming has many benefits, but the ones that interest me the most are the facts that it avoids changing-state and mutable data. This leads to removing side effects, which is a huge relief!

Pattern matching

One thing I already love is pattern matching. It allows destructuring and is a common pattern in Elixir:

case File.read "hello" do
  {:ok, body}      -> IO.puts "Success: #{body}"
  {:error, reason} -> IO.puts "Error: #{reason}"
end

Here, instead of try/catch the File.read call as we could do in other languages (actually Elixir supports it too), we can simply define two clauses that would match the two possible outcomes of the function call.

Another example is pattern matching used as filter in a comprehension:

iex> values = [good: 1, good: 2, bad: 3, good: 4]
iex> for {:good, n} <- values, do: n * n
[1, 4, 16]

Here, for each tuple of values which match the pattern {:good, n}, we multiply n by itself.

Processes

Elixir is built on processes which are extremely lightweight in terms of memory and CPU:

Processes are isolated from each other, run concurrent to one another and communicate via message passing. Processes are not only the basis for concurrency in Elixir, but they also provide the means for building distributed and fault-tolerant programs.

And it’s as simple as that:

parent = self()

# Spawns an Elixir process (not an operating system one!)
spawn_link(fn ->
  send parent, {:msg, "hello world"}
end)

# Block until the message is received
receive do
  {:msg, contents} -> IO.puts contents
end

Note the {:msg, contents} pattern matching again!

Module attributes

Another interesting feature is module attributes. Then can be used to document a module or a function, but also to specify behaviours that a module implements (behaviours are similar to interfaces in object oriented languages), or even to store data during compilation!

defmodule Math do
  @moduledoc """
  Provides math-related functions.

  ## Examples

      iex> Math.sum(1, 2)
      3

  """

  @doc """
  Calculates the sum of two numbers.
  """
  def sum(a, b), do: a + b
end

Scalability, maintainability

Since Erlang was conceived with high availability and scalability in mind, Elixir which sits on top of it inherits (in a functional programming way of course ^^) Erlang’s kick-ass performance!

The guys at Oozou wrote a great summary of some of the powerful features that makes Erlang (and Elixir) so great.

A cure for a great future

Elixir has an awesome Getting Started guide and I couldn’t recommend you enough to follow it.

I think the next steps in my Elixir journey will be:

What about you? What do you think of Elixir?

Special thanks to Macha for reviewing and helping me improving this blog post!