Numbers In Elixir
TL;DR Let’s see how Elixir handles numbers. This post is part of the functional language series, and it is based on the remarkable book Elixir In Action by Sasa Juric….
TL;DR Let’s see how Elixir handles numbers. This post is part of the functional language series, and it is based on the remarkable book Elixir In Action by Sasa Juric….
TL;DR You will learn how to create your first Elm application. This post is part of the functional language series, and it is based on a remarkable book Programming Elm…
TL;DR Writing comments in Elixir is no brainer, the real skill is to know when we should use comments. This post is part of the functional language series, and it…
TL;DR In Elm, everything is about functions. Let’s explore Elm function curried property. This post is part of the functional language series, and it is based on a remarkable book…
TL;DR Elixir module attributes could be used as constants, or they have a particular purpose and could be accessed during the runtime. This post is part of the functional language…
TL;DR Here we explain Elm creator design decision to not support programming statements. This post is part of the functional language series, and it is based on a remarkable book…
TL;DR The primary purpose of Imports and Aliases in Elixir is to make your code more human-readable. This post is part of the functional language series, and it is based…
TL;DR In your program, you will need to compare values. This post is part of the functional language series, and it is based on a remarkable book Programming Elm Build…
TL;DR Elixir language supports public and private functions. The private function could only be called from functions in the same module. This post is part of the functional language series,…
TL;DR Every program in the Matrix is using if statement. Let’s explore how you can write better applications using Elm if expressions. This post is part of the functional language…