Current section
Files
Jump to
Current section
Files
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.