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