Current section

Files

Jump to
testlib lib testlib.ex
Raw

lib/testlib.ex

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