19 lines
207 B
Elixir
19 lines
207 B
Elixir
defmodule RanchTalk do
|
|
@moduledoc """
|
|
Documentation for `RanchTalk`.
|
|
"""
|
|
|
|
@doc """
|
|
Hello world.
|
|
|
|
## Examples
|
|
|
|
iex> RanchTalk.hello()
|
|
:world
|
|
|
|
"""
|
|
def hello do
|
|
:world
|
|
end
|
|
end
|