Current section

Files

Jump to
ape lib ape.ex
Raw

lib/ape.ex

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