Day 7: A Short Visit to Common Data Structures
Records Records are, first of all, a hack. They are more or less an afterthought to the language and can have their share of inconveniences.They’re still pre...
Records Records are, first of all, a hack. They are more or less an afterthought to the language and can have their share of inconveniences.They’re still pre...
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 ...
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...