Packages

An ACME client library

Current section

Files

Jump to
safe lib safe.ex
Raw

lib/safe.ex

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