initial: addressex initial implemmentation

This commit is contained in:
Joao P Dubas
2024-01-26 14:57:48 +00:00
commit f0e9c1c6d7
17 changed files with 1194 additions and 0 deletions

18
ex/lib/addressex.ex Normal file
View File

@@ -0,0 +1,18 @@
defmodule Addressex do
@moduledoc """
Documentation for `Addressex`.
"""
@doc """
Hello world.
## Examples
iex> Addressex.hello()
:world
"""
def hello do
:world
end
end