Packages

An initial package scaffold for the Tenacity Elixir project.

Current section

Files

Jump to
tenacity lib tenacity.ex
Raw

lib/tenacity.ex

defmodule Tenacity do
@moduledoc """
The initial public namespace for Tenacity.
This module currently exposes a placeholder API while Tenacity's production
interface is being designed.
"""
@doc """
Returns the placeholder value `:world`.
## Examples
iex> Tenacity.hello()
:world
"""
@spec hello() :: :world
def hello do
:world
end
end