diff options
Diffstat (limited to 'presentations/erlang-2016/src/hello.erl')
-rw-r--r-- | presentations/erlang-2016/src/hello.erl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/presentations/erlang-2016/src/hello.erl b/presentations/erlang-2016/src/hello.erl new file mode 100644 index 000000000000..56404a0c5a20 --- /dev/null +++ b/presentations/erlang-2016/src/hello.erl @@ -0,0 +1,5 @@ +-module(hello). +-export([hello_joe/0]). + +hello_joe() -> + hello_joe. |