190 B · text 806cbc3
defmodule Test do
@moduledoc """
Documentation for Test.
"""
@doc """
Hello world.
## Examples
iex> Test.hello()
:world
"""
def hello do
:world
end
end