about summary refs log tree commit diff
path: root/users/tazjin/presentations/erlang-2016/src/hello2.erl
diff options
context:
space:
mode:
Diffstat (limited to 'users/tazjin/presentations/erlang-2016/src/hello2.erl')
-rw-r--r--users/tazjin/presentations/erlang-2016/src/hello2.erl11
1 files changed, 11 insertions, 0 deletions
diff --git a/users/tazjin/presentations/erlang-2016/src/hello2.erl b/users/tazjin/presentations/erlang-2016/src/hello2.erl
new file mode 100644
index 0000000000..2d1f6c84c4
--- /dev/null
+++ b/users/tazjin/presentations/erlang-2016/src/hello2.erl
@@ -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