Current section
Files
Jump to
Current section
Files
lib/test_package.ex
defmodule TestPackage do
@moduledoc """
Documentation for `TestPackage`.
"""
@doc """
Hello world.
## Examples
iex> TestPackage.hello()
:world
"""
def hello do
:world
end
end