Current section
Files
Jump to
Current section
Files
lib/people.ex
defmodule People do
@moduledoc """
Documentation for `People`.
"""
@doc """
Hello world.
## Examples
iex> People.hello()
:world
"""
def hello do
:world
end
end