If you have been reading blog posts, hacker news threads, your favorite developers tweets or listening to podcasts, at this point youโve probably heard about the Elixir programming language. The language was created by Josรฉ Valim, a well known developer in the open-source world. You may know him from the Ruby on Rails MVC framework or from the device and simple_form ruby gems him and his co-workers from the Plataformatec have been working on in the last few years.
According the Josรฉ Valim, Elixir was born inย 2011. He had the idea to build the new language due the lack of good tools to solve the concurrency problems in the ruby world. At that time, after spending time studying concurrency and distributed focused languages, he found two languages that he liked, Erlang and Clojure which run in the JVM. He liked everything he saw in the Erlang language (Erlang VM) and he hated the things he didnโt see, like polymorphism, metaprogramming and language extendability attributes which Clojure was good at. So, Elixir was born with that in mind, to have an alternative for Clojure and a dynamic language which runs in the Erlang Virtual Machine with good extendability support.
Elixirย describes itself as a dynamic, functional language with immutable state and an actor based approach to concurrency designed for building scalable andย maintainable applicationsย with a simple, modern and tidy syntax. The language runs in the Erlang Virtual Machine, a battle proof, high-performance and distributed virtual machine known for its low latency and fault tolerance characteristics.
Before we see some code, itโs worth saying that Elixir has beenย accepted by the communityย which is growing. If you want to learn Elixir today you will easily find books, libraries, conferences, meetups, podcasts, blog posts, newsletters and all sorts of learning sources out there as well as it was accepted by the Erlang creators.
Letโs see some code!
Install Elixir:
Installing Elixir isย super easyย in all major platforms and is an one-liner in most of them.
Arch Linux
Elixir is available on Arch Linux through the official repositories:
pacman -S elixir
Ubuntu
Installing Elixir in Ubuntu is a bit tidious. But it is easy enough nonetheless.
wget https://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb && sudo dpkg -i erlang-solutions_1.0_all.deb
apt-get update
apt-get install esl-erlang
apt-get install elixir
OS X
Install Elixir in OS X usingย Homebrew.
brew install elixir
Meet IEx
After the installation is completed, itโs time to open your shell. You will spend a lot of time in your shell if you want to develop in Elixir.
Elixirโs interactive shell or IEx is a REPL – (Read Evaluate Print Loop) where you can explore Elixir. You can input expressions there and they will be evaluated giving you immediate feedback. Keep in mind that your code is truly evaluated and not compiled, so make sure not to run profiling nor benchmarks in the shell.
The Break Command
Thereโs an important thing you need to know before you start the IEx RELP – how to exit it.
Youโre probably used to hittingย CTRL+C
ย to close the programs running in the terminal. If you hitย ย CTRL+C
ย in the IEx RELP, you will open up the Break Menu. Once in the break menu, you can hitย CTRL+C
ย again to quit the shell as well as pressingย a
.
Iโm not going to dive into the break menu functions. But, letโs see a few IEx helpers!
Helpers
IEx provides a bunch ofย helpers, in order to list all of them type:ย h()
.
And this is what you should see:
Those are some of my favorites, I think they will be yours as well.
h
ย as we just saw, this function will print the helper message.h/1
ย which is the same function, but now it expects one argument.
For instance, whenever you want to see the documentation of theย String
ย strip/2
ย method you can easily do:
Probably the second most useful IEx helper youโre going to use while programming in Elixir is theย c/2
, which compiles a given elixir file (or a list) and expects as a second parameter a path to write the compiled files to.
Letโs say you are working in one of the http://exercism.io/ Elixir exersices, the Anagram exercise.
So you have implemented theย Anagram
ย module, which has the methodย match/2
ย in the anagram.exs file. As the goodย developerย you are, you have written a few specs to make sure everything works as expected as well.
This is how your current directory looks:
Now, in order to run your tests against the Anagram module you need to run/compile the tests.
As you just saw, in order to compile a file, simply invoke theย elixir
ย executable passing as argument path to the file you want to compile.
Now letโs say you want to run the IEx REPL with the Anagram module accessible in the session context. There are two commonly used options. The first is you can require the file by using the optionsย -r
, something likeย iex -r anagram.exs
. The second one, you can compile right from the IEx session.
Simple, just like that!
Ok, what about if you want to recompile a module? Should you exit the IEx, run it again and compile the file again? Nope! If you have a good memory, you will remember that when we listed all the helpers available in the IEx RELP, we saw something about a recompile command. Letโs see how it works.
Notice that this time, you passed as an argument the module itself and not the file path.
As we saw, IEx has a bunch of other useful helpers that will help you learn and understand better how an Elixir program works.
Basics of Elixir Types
Numbers
There are two types of numbers. Arbitrary sized integers and floating points numbers.
Integers
Integers can be written in the decimal base, hexadecimal, octal and binary.
As inย Ruby, you can use underscore to separate groups of three digits when writing large numbers. For instance you could right a hundred million like this:
100_000_000
Octal:
0o444
Hexdecimal:
0xabc
Binary:
0b1011
Floats
Floare are IEEE 754 double precision. They have 16 digits of accuracy and a maximum exponent of around 10308.
Floats are written using a decimal point. There must be at least one digit before and after the point. You can also append a trailing exponent. For instance 1.0, 0.3141589e1, and 314159.0-e.
Atoms
Atoms are constants that represent names. They are immutable values. You write an atom with a leading colonย :
ย and a sequence of letters, digits, underscores, and at signsย @
. You can also write them with a leading colonย :
ย and an arbitrary sequence of characters enclosed by quotes.
Atoms are a very powerful tool, they are used to reference erlang functions as well as keys and Elixir methods.
Here are a few valid atoms.
:name, :first_name, :"last name", :===, :is_it_@_question?
Booleans
Of course, booleans are true and false values. But the nice thing about them is at the end of the day, theyโre just atoms.
Strings
By default, strings in Elixir areย UTF-8ย compliant. To use them you can have an arbitrary number of characters enclosed byย "
ย orย '
. You can also have interpolated expressions inside the string as well as escaped characters.
Be aware that single quoted strings are actually a list of binaries.
Anonymous Functions
As a functional language, Elixir has anonymous functions as a basic type. A simple way to write a function isย fn (argument_list) -> body end
. But a function can have multiple bodies with multiple argument lists, guard clauses, and so on.
Dave Thomas, in theย Programming Elixirย book, suggests we think of fnโฆend as being the quotes that surround a string literal, where instead of returning a string value we are returning a function.
Tuples
Tuple is an immutable indexed array. They are fast to return its size and slow to append new values due its immutable nature. When updating a tuple, you are actually creating a whole new copy of the tuple self.
Tuples are very often used as the return value of an array. While coding in Elixir you will very often see this,ย {:ok, something_else_here}
.
Hereโs how we write a tuple:ย {?a,?b,?c}
.
Pattern Matching
I wonโt be able to explain everything you need to know about Pattern Matching, however what you are about to read covers a lot of what you need to know to get started.
Elixir usesย =
ย as a match operator. To understand this, we kind of need to unlearn what we know aboutย =
ย in other traditional languages. In traditional languages the equals operator is for assignment. In Elixir, the equals operators is for pattern matching.
So, thatโs the way it works values in the left hand side. If they are variables they are bound to the right hand side, if they are not variables elixir tries to match them with the right hand side.
Pin Operator
Elixir provides a way to always force pattern matching against the variable in the left hand side, the pin operator.
Lists
In Elixir, Lists look like arrays as we know it from other languages but they are not. Lists are linked structures which consist of a head and a tail.
Keyword Lists
Keyword Lists are a list of Tuple pairs.
You simply write them as lists. For instance: [{:one, 1}, 2, {:three, 3}]. Thereโs a shortcut for defining lists, hereโs how it looks: [one: 1, three: 3].
In order to retrieve an item from a keyword list you can either use:
Keyword.get([{:one, 1}, 2, {:three, 3}], :one)
Or use the shortcut:
[{:one, 1}, 2, {:three, 3}][:one]
Because keyword lists are slow when retrieving a value, in it is an expensive operation, so if you are storing data that needs fast access you should use a Map.
Maps
Maps are an efficient collection of key/value pairs. The key can have any value you want as a key, but usually should be the same type. Different from keyword lists, Maps allow only one entry for a given key. They are efficient as they grow and they can be used in the Elixir pattern matching in general use maps when you need an associative array.
Hereโs how you can write a Map:
%{ :one => 1, :two => 2, 3 => 3, "four" => 4, [] => %{}, {} => [k: :v]}
Conclusion
Elixir is awesome, easy to understand, has simple but powerful types and very useful tooling around it which will help you when beginning to learn. In this first part, we have covered the various data types Elixir programs are built on and the operators that power them. In later parts we will dive deeper into the world of Elixir – functional and concurrent programming.
Author:ย Bryan Grezeszak
Via:ย Toptal
This was sent in to TechBooky via Toptal
Toptal wasย created by engineers.ย We are entrepreneurs, all passionate about working with top tech talent and exciting companies from all over the world. T=Read more about them on theirย website
Discover more from TechBooky
Subscribe to get the latest posts sent to your email.