Current section

Files

Jump to
ex_voix lib ex_voix.ex
Raw

lib/ex_voix.ex

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