Erlang programming language

Erlang is a general-purpose concurrent programming language and runtime system. The sequential sub-set of Erlang is a functional language, with strict evaluation and dynamic typing.

Named after A. K. Erlang, it was developed at Ericsson for use in telecommunication hardware. It was designed to support distributed, fault-tolerant, soft-real-time, non-stop applications. Since its release as open source in 1998, it became used by companies world-wide, including Nortel and T-Mobile.

Code looks like this:


-module(fact).

-export([fac/1]).

fac(0) -> 1; fac(N) -> N * fac(N-1).

See also: Erlang unit

External Links


 
 

Browse articles alphabetically:
0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | _ | A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z
 
[an error occurred while processing this directive]