Current section

Files

Jump to
nimler lib nimler.ex
Raw

lib/nimler.ex

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