lib/test_package.ex
defmodule TestPackage do
@moduledoc """
Documentation for `TestPackage`.
"""
@doc """
Hello world.
## Examples
iex> TestPackage.hello()
:world
"""
def hello do
:world
end
end
defmodule TestPackage do
@moduledoc """
Documentation for `TestPackage`.
"""
@doc """
Hello world.
## Examples
iex> TestPackage.hello()
:world
"""
def hello do
:world
end
end