Current section

Files

Jump to
mozart lib mozart.ex
Raw

lib/mozart.ex

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