Day 5: Errors and Exceptions
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...
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...
In functional programming concept of higher order functions is where we use functions as parameters to other functions. Resulting in the function parameter b...
Type Safety is the new cool, type systems give programmers more safety and speed due to less errors. Erlang is a dynamically typed language where error is ca...
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...
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 ...