Doing an example mix project

This commit is contained in:
2023-10-08 12:49:42 -04:00
parent 7e0aa3b86b
commit 4da817996d
8 changed files with 121 additions and 0 deletions

View File

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