Day 2: Syntax in Functions
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...
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 ...
I consider myself an advanced beginner in Elixir, being a Rubyist, Elixir was destined to be my next language, like it has been for many other Ruby developer...
Writing Javascript at scale is not easy, however, Javascript has experienced a lot of improvements over the past decade making it modern, less buggy, predict...
Factory Method is a creational design pattern that provides an interface for creating objects in a superclass, but allows subclasses to alter the type of obj...