Erlang
- general-purpose concurrent programming language and runtime system [...]
- Erlang is used in several large telecommunication systems from Ericsson. [...]
- terminate every expression with a DOT followed by a whitespace! [...]
- Example:
- -module(test).
-export([fac/1]).
fac(0) -> 1;
fac(N) -> N * fac(N-1).
- -module(test).
- JSON and JSON-RPC for Erlang