Recent Posts

Day 6: Functionally Solving Problems

less than 1 minute read

On this chapter there was nothing interesting from the book, just an implementation of a prefix notation or Polish notation. In Erlang to solve a problem is ...

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...