ranch-talk/lib/ranch_talk.ex

19 lines
207 B
Elixir
Raw Permalink Normal View History

2022-02-11 12:05:42 -06:00
defmodule RanchTalk do
@moduledoc """
Documentation for `RanchTalk`.
"""
@doc """
Hello world.
## Examples
iex> RanchTalk.hello()
:world
"""
def hello do
:world
end
end