diff options
author | Vincent Ambo <tazjin@gmail.com> | 2016-09-22T11·56+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2016-09-22T11·56+0200 |
commit | 6c456a06c7166b70a2347283a7afcfc4107cb3c7 (patch) | |
tree | bf6377406adb5b40d93a37119755e1ce7dde1fa6 /src/hello.erl |
Initial check-in
Diffstat (limited to 'src/hello.erl')
-rw-r--r-- | src/hello.erl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/hello.erl b/src/hello.erl new file mode 100644 index 000000000000..56404a0c5a20 --- /dev/null +++ b/src/hello.erl @@ -0,0 +1,5 @@ +-module(hello). +-export([hello_joe/0]). + +hello_joe() -> + hello_joe. |