[Home]Erlang programming language

HomePage | Recent Changes | Preferences

Difference (from prior major revision) (author diff)

Changed: 1c1,2
Erlang is a general-purpose Programming language and runtime? system. It is also available as a Open Source implementation. Named for A.K. Erlang, it is used in telecommunication hardware from Ericsson. It is suitable for distributed and soft real-time systems.
Erlang is a general-purpose Programming language and runtime? system. It is also available as a Open Source implementation. Named for
A. K. Erlang, it is used in telecommunication hardware from Ericsson. It is suitable for distributed and soft real-time systems.

Changed: 12c13
See also Erlang unit, A.K. Erlang
See also Erlang unit, A. K. Erlang

Erlang is a general-purpose Programming language and runtime? system. It is also available as a Open Source implementation. Named for A. K. Erlang, it is used in telecommunication hardware from Ericsson. It is suitable for distributed and soft real-time systems.

Code looks like this:

-module(fact).
-export([fac/1]).

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

See also Erlang unit, A. K. Erlang

HomePage | Recent Changes | Preferences
This page is read-only | View other revisions
Last edited December 18, 2001 6:30 am by Taw (diff)
Search: