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