Skip to content

Instantly share code, notes, and snippets.

@fmamud
Created July 6, 2016 14:34
Show Gist options
  • Save fmamud/ae4b7ad572abcac2fc3e6d3ca670f6a6 to your computer and use it in GitHub Desktop.
Save fmamud/ae4b7ad572abcac2fc3e6d3ca670f6a6 to your computer and use it in GitHub Desktop.
TDC 2016 São Paulo - Palestra: Erlang sem enrolação
-module (tdc).
-export ([printer/0, mysum/1, loop/0]).
printer() ->
io:format("~p~n", ["Bem vindos ao TDC 2016"]).
mysum([]) ->
0;
mysum([H|T]) ->
H + mysum(T).
loop() ->
receive
show ->
?MODULE:printer(),
loop()
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment