chore(tazjin): Move my presentations to my user directory

Change-Id: I72b25680e7167c3a55477111c28b1d4936c60e2c
Reviewed-on: https://cl.tvl.fyi/c/depot/+/606
Reviewed-by: tazjin <mail@tazj.in>
This commit is contained in:
Vincent Ambo 2020-06-26 20:38:47 +01:00 committed by tazjin
parent 1d0e421cb8
commit 2e3b03b5ae
40 changed files with 0 additions and 0 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