Current section

Files

Jump to
ping lib ping.ex
Raw

lib/ping.ex

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