Current section

Files

Jump to
notified lib notified.ex
Raw

lib/notified.ex

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