Initial commit

This commit is contained in:
2024-03-05 06:02:58 -05:00
commit a32c7a5b74
42 changed files with 1395 additions and 0 deletions

18
lib/iban_ex.ex Normal file
View File

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