Recent Posts

Day 5: Errors and Exceptions

2 minute read

Errors come in many flavours such as compile-time errors, logical errors, run-time errors and generated errors. Compile-time errors are often syntactic mista...

Day 4: Higher Order Functions

1 minute read

In functional programming concept of higher order functions is where we use functions as parameters to other functions. Resulting in the function parameter b...

Day 2: Syntax in Functions

2 minute read

An = sign in Erlang/Elixir is not about assignment but rather is a match operator, the same way it is in Algebra. Pattern matching allows for using different...

Day 1: Starting Out and Modules

5 minute read

With Erlang you can try out the language using the Erlang shell by typing erl, one great thing about the Erlang shell is that it has a built-in line editor ...