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