defmodule RanchTalk do @moduledoc """ Documentation for `RanchTalk`. """ @doc """ Hello world. ## Examples iex> RanchTalk.hello() :world """ def hello do :world end end