Some interesting facts
Example of Hello World code written in Erlang compared to other languages
Erlang
-module(hello).
-export([hello_world/0]).
hello_world() -> io:fwrite("hello, world\n"). Erlang (BEAM) emulator version 4.9.1 [source]
Eshell V4.9.1 (abort with ^G)
c(hello).
{ok,hello}JavaScript
Kotlin
Python
Ruby
Last updated