Packages

Manage the Elixir application environment within a context

Current section

Files

Jump to
with_env lib with_env.ex
Raw

lib/with_env.ex

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