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