Concurrent Programming in Erlang
Concurrent Programming in Erlang

Erlang is a concurrent programming language means parallel activities can be programmed directly in Erlang.

Defining Erlang Modules with its Attributes
Defining Erlang Modules with its Attributes

In this article we will learn about the Erlang modules and attributes. Programs are divided into modules and modules containing functions and attributes to access the information about the application.

Pattern Matching in Erlang
Pattern Matching in Erlang

pattern matching is a process of checking a given sequence of tokens for the presence of the constituents of some pattern . Erlang uses pattern matching to bind variables to values. In erlang pattern matching can be explicit as well as implicit .

Process in Erlang
Process in Erlang

Erlang is designed for massive concurrency. Erlang processes are lightweight (grow and shrink dynamically) with small memory footprint, fast to create and terminate, and the scheduling overhead is low.