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