Quantcast
Channel: Happy Coding Journal » snippets about…
Viewing all articles
Browse latest Browse all 12

snippets about… Erlang

$
0
0

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).
  • JSON and JSON-RPC for Erlang

Viewing all articles
Browse latest Browse all 12

Trending Articles