Current section

Files

Jump to
msg lib msg.ex
Raw

lib/msg.ex

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