Elixir Tutorial
In this tutorial, we will learn the Elixir Programming language from beginning to expert, this tutorial provides a brief explanation of the elixir programming languages. Elixir is a functional, concurrent, general-purpose programming language.
What is Elixir
Elixir is a general-purpose, dynamic, concurrent, and functional programming language designed to build large-scale sites and applications.
Elixir runs on the BEAM Virtual Machine. It is built on top of the Erlang Programming Language that was influenced by Clojure, Erlang, and Ruby.
The Elixir programming language was developed by José Valim. It first version of the elixir was released in 2011.
The File extension of the elixir is .ex, and .exs.

Quick Example
Let’s have a quick look at the Elixir Programming Language example, the following elixir program will print the “Hello, Elixir !”, we will discuss in the next tutorial.
IO.puts "Hello, Elixir !"
Leave a Reply