Files
setup-elixir/test-project/lib/test.ex
Jonathan Clem 83d6ee76a6 Initial commit
2019-08-28 16:49:59 -04:00

19 lines
190 B
Elixir

defmodule Test do
@moduledoc """
Documentation for Test.
"""
@doc """
Hello world.
## Examples
iex> Test.hello()
:world
"""
def hello do
:world
end
end