Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 2.13 KB

README.md

File metadata and controls

47 lines (30 loc) · 2.13 KB

Erlang

for building massively scalable highly-available soft real-time systems. Runtime system has built-in support for concurrency, distribution and fault tolerance.

Usage $ erlc hello.erl $ erl -noshell -s hello start -s init stop

OTP-21 highlights

example({ok, Val}) -> {ok, Val}.

to

example({ok, Val} = Tuple) -> Tuple.

OTP on Open BSD