diff --git a/erlang/i_want_to_go_home.erl b/erlang/i_want_to_go_home.erl new file mode 100644 index 0000000..4cba6a3 --- /dev/null +++ b/erlang/i_want_to_go_home.erl @@ -0,0 +1,5 @@ +-module(i_want_to_go_home). +-export([i_want_to_go_home/0]). + +i_want_to_go_home() -> + io:format("I want to go home!~n", []).