chore(erlang-presentation): Prepare for depot merge

This commit is contained in:
Vincent Ambo 2019-12-21 00:37:07 +00:00
parent 421ef0a77f
commit 8ab71587a7
9 changed files with 0 additions and 1 deletions

View file

@ -0,0 +1,11 @@
-module(hello2).
-export([hello/1]).
hello(Name) ->
io:format("Hey ~s!~n", [Name]).
% 3> c(hello2).
% {ok,hello2}
% 4> hello2:hello("Joe").
% Hello Joe!
% ok