Packages

A hello world app written in Erlang/OTP.

Current section

Files

Jump to
hello_erl src hello.erl
Raw

src/hello.erl

%%%-------------------------------------------------------------------
%% @doc hello_erl worker
%% @end
%%%-------------------------------------------------------------------
-module(hello).
-export([start/0]).
start() ->
loop().
loop() ->
receive
after 3000 ->
io:format("hello, world~n"),
loop()
end.