New Fetch
This commit is contained in:
9
erlang/hello-world/src/hello_world.app.src
Normal file
9
erlang/hello-world/src/hello_world.app.src
Normal file
@@ -0,0 +1,9 @@
|
||||
{application, hello_world,
|
||||
[{description, "exercism.io - hello-world"},
|
||||
{vsn, "0.0.1"},
|
||||
{modules, []},
|
||||
{registered, []},
|
||||
{applications, [kernel,
|
||||
stdlib]},
|
||||
{env, []}
|
||||
]}.
|
8
erlang/hello-world/src/hello_world.erl
Normal file
8
erlang/hello-world/src/hello_world.erl
Normal file
@@ -0,0 +1,8 @@
|
||||
-module(hello_world).
|
||||
|
||||
-export([hello/0, test_version/0]).
|
||||
|
||||
hello() ->
|
||||
undefined.
|
||||
|
||||
test_version() -> 2.
|
Reference in New Issue
Block a user