chore(erlang-presentation): Prepare for depot merge
This commit is contained in:
parent
421ef0a77f
commit
8ab71587a7
9 changed files with 0 additions and 1 deletions
11
presentations/erlang-2016/src/hello2.erl
Normal file
11
presentations/erlang-2016/src/hello2.erl
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue