Initial commit

This commit is contained in:
Jonathan Clem
2019-08-28 00:00:01 -04:00
commit 83d6ee76a6
210 changed files with 15020 additions and 0 deletions

18
test-project/lib/test.ex Normal file
View File

@@ -0,0 +1,18 @@
defmodule Test do
@moduledoc """
Documentation for Test.
"""
@doc """
Hello world.
## Examples
iex> Test.hello()
:world
"""
def hello do
:world
end
end