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