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