Function Arity In Elixir
TL;DR Arity means how many input parameters Elixir function has. This post is part of the functional language series, and it is based on the remarkable book Elixir In Action…
TL;DR Arity means how many input parameters Elixir function has. This post is part of the functional language series, and it is based on the remarkable book Elixir In Action…
TL;DR Let’s explain the most exciting Elixir and Elm operator and how it operates with functions. This post is part of the functional language series. We have already learned how…
TL;DR It is time to meet the first-class citizens of Elixir, a function. This post is part of the functional language series. Function lives in a module. We have already…
TL;DR Modules are way how to group Elm functions in meaningful groups. This post is part of the functional language series. In Elm, the module is starting block. Elm is…
TL;DR Modules are way how to group Elixir functions in meaningful groups. This post is part of the functional language series. In Elixir, the module is starting block. Elixir is…
TL;DR The essential ingredient of every programming language is variable. This post is part of the functional language series. Last time we learned how to use variables in Elixir. Let’s…
TL;DR The essential ingredient of every programming language is variable. This post is part of the functional language series. Elixir is a dynamic language, the same as Ruby and Python….
TL;DR Elm is also a programming language with an interactive shell. Let’s introduce Repl. This post is part of the functional language series. If you expected a detailed “guide by…
TL;DR When I evaluate the quality characteristics of a programming language, my first What question is What is the name of the interactive shell. This post is part of the…
TL;DR In order to start programming in Elixir and Elm, we first need to install those on our development machine. We introduce to you asdf, a CLI for managing multiple…