Current section

Files

Jump to
nerves_bootstrap templates new lib app_name.ex
Raw

templates/new/lib/app_name.ex

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