lib/native.ex
defmodule Native do
@moduledoc """
Documentation for `Native`.
"""
@doc """
Hello world.
## Examples
iex> Native.hello()
:world
"""
def hello do
:world
end
end
defmodule Native do
@moduledoc """
Documentation for `Native`.
"""
@doc """
Hello world.
## Examples
iex> Native.hello()
:world
"""
def hello do
:world
end
end