Current section

Files

Jump to
ex_aequo_base lib ex_aequo_base.ex
Raw

lib/ex_aequo_base.ex

defmodule ExAequoBase do
@moduledoc """
Some functions I use all over my places, this is only a namespsace
"""
@doc """
Hello world.
## Examples
iex> ExAequoBase.hello()
:world
"""
def hello do
:world
end
end
# SPDX-License-Identifier: AGPL-3.0-or-later