Files
setup-elixir/test-project/lib/test.ex

19 lines
190 B
Elixir
Raw Permalink Normal View History

2019-08-28 00:00:01 -04:00
defmodule Test do
@moduledoc """
Documentation for Test.
"""
@doc """
Hello world.
## Examples
iex> Test.hello()
:world
"""
def hello do
:world
end
end