Current section

Files

Jump to
mulberry lib mulberry.ex
Raw

lib/mulberry.ex

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