19 lines
198 B
Elixir

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