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