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