Initialized Elixir project

This commit is contained in:
2025-12-14 20:22:05 +02:00
commit d450229356
7 changed files with 104 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
defmodule NeonVertigoService do
@moduledoc """
Documentation for `NeonVertigoService`.
"""
@doc """
Hello world.
## Examples
iex> NeonVertigoService.hello()
:world
"""
def hello do
:world
end
end