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