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 →Operators in Erlang are expressions that combine values to produce new values. Because Erlang is a functional language with immutable data, operators never mutate their arguments — they always return …
Read more →Showing 1–3 of 3 posts (page 1 of 1)