about summary refs log tree commit diff
path: root/presentations/erlang-2016/src/hello2.erl
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2020-06-26T19·38+0100
committertazjin <mail@tazj.in>2020-06-26T19·51+0000
commit2e3b03b5ae04cc9d4da0001aff07962bf4107d42 (patch)
tree75d929acb15720bc8eb1182d105e2ecaa2626ba0 /presentations/erlang-2016/src/hello2.erl
parent1d0e421cb86861c64b58d5aa66dce295ffe28af5 (diff)
chore(tazjin): Move my presentations to my user directory r/1090
Change-Id: I72b25680e7167c3a55477111c28b1d4936c60e2c
Reviewed-on: https://cl.tvl.fyi/c/depot/+/606
Reviewed-by: tazjin <mail@tazj.in>
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