Hello World in Erlang
Every programming journey starts with Hello World. Let’s write our first Erlang program and explore what makes this concurrent functional language tick.
The Code
Create a file named hello.erl: …
Every programming journey starts with Hello World. Let’s write our first Erlang program and explore what makes this concurrent functional language tick.
Create a file named hello.erl: …
Erlang is a dynamically typed, functional language where all data is immutable and variables are single-assignment. Once a variable is bound to a value, it cannot be changed within the same scope. …
Read more →