Elixir

Join the Elixir Track
Elixir is a dynamic, functional language designed for building scalable and maintainable applications. Elixir leverages the Erlang VM, known for running low-latency, distributed and fault-tolerant systems, while also being successfully used in web development and the embedded software domain.
Track mentors

33 Mentors

Our mentors are friendly, experienced Elixir developers who will help teach you new techniques and tricks.
Track students

7,705 Students

Join thousands of students who have enjoyed learning and improving their skills by taking this track.
Track exercises

92 Exercises

Hundreds of hours have gone into making these exercises fun, useful, and challenging to help you enjoy learning.

About Elixir

Elixir, initially released in 2012, extends upon the already robust features of Erlang while also being easier for beginners to access, read, test, and write.

José Valim, the creator of Elixir, explains here how he built the language for applications to be:

  1. Distributed
  2. Fault-Tolerant
  3. Soft-Real-Time
  4. Hot-Code-Swapped (can introduce new code without stopping the server)

Elixir actually compiles down to bytecode and then runs on the BEAM Erlang Virtual Machine.

There is no "conversion cost" for calling Erlang, meaning you can run Erlang code right next to Elixir code.

Being a functional language, everything in Elixir is an expression.

Elixir has "First Class Documentation" meaning comments can be attached to a function, making it easier to retrieve.

Regular expressions are also given first class treatment, removing awkward escaping within strings.

Elixir's asynchronous communication implementation allows the code to be lightweight, yet incorporate high-volume concurrency.

Programmers use Elixir to handle thousands of requests and responses concurrently on a single server node.

It has been used successfully for microservices that need to consume and serve a multitude of APIs rapidly.

The Phoenix framework helps structure Elixir applications for the web.

Join the Elixir track
defmodule HelloWorld do

  @doc """
  Greets the user by name, or by saying
  "Hello, World!" if no name is given
  """
  def hello(name \\ "World") do
    "Hello, #{name}!"
  end
end

Self-contained finite problems with which to learn the language

I have spent time with the Clojure, Elixir & Go tracks and all have been incredibly beneficial, providing self-contained finite problems with which to learn the language. The Go language track has been wonderful in introducing me to the language, what idiomatic code is, and the many different ways in which one can solve a problem.

Relaxed. Encouraging. Supportive.

Meet the Elixir Track mentors

Once you join the Elixir language track, you will receive support and feedback from our team of mentors. Here are the bios of a few of the mentors of this track.

Avatar of Todd Resudek

Todd Resudek https://github.com/supersimple

I am happy to help. I have been working professionally in Elixir since January 2018 and have presented at Empex, ElixirDaze, and ElixirConf 2018.
Avatar of Ken Cross

Ken Cross blog

Enjoy learning and teaching topics in functional programming and mathematics as it relates to distributed systems, category theory, graph theory, and computer science at large.
Avatar of Olaoluwa Oluro

Olaoluwa Oluro https://github.com/ollaollu

I love Elixir because of it's explicitness and oh the pattern matching is amazing.
Avatar of Ian Fosbery

Ian Fosbery https://www.codeguy.io

I've been a programmer for over 15 years. I've really gotten into functional programming in recent years, which is how I've come to love Elixir so much. Concurrency, fp, the Erlang VM - what's not to love?!
Avatar of Sean Handley

Sean Handley Website

I'm a remote developer based in Manchester. Ruby is my first love but increasingly I'm focussing on Elixir. The open source community means a great deal to me and I attend (and occasionally speak at) various technical conferences.
Avatar of Christoph Lipp

Christoph Lipp https://github.com/ser1us

The syntax is slightly ruby-ish and quite easy to grasp. But it truly is stading on the shoulders of giants (Erlang / OTP) which makes it my go to language for most new projects.
Fun. Challenging. Interesting

Community-sourced Elixir exercises

These are a few of the 92 exercises on the Elixir track. You can see all the exercises here.

Beer Song
easy
recursion
pattern matching
List Ops
medium
lists
enumeration
recursion
Matrix
easy
string processing
structs
Queen Attack
medium
algorithms
structs
Perfect Numbers
easy
pattern matching
enumeration
math
All Your Base
easy
translation
numbers
math

Get started with the Elixir track. As with everything on Exercism, it's 100% free!

Join the Elixir Track