Current section
Files
Jump to
Current section
Files
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