Now we have some elixir

This commit is contained in:
2026-06-05 00:59:45 +02:00
parent 2855f3d489
commit 969870b3c3
10 changed files with 202 additions and 35 deletions
+18
View File
@@ -0,0 +1,18 @@
defmodule BunnyMask do
@moduledoc """
Documentation for `BunnyMask`.
"""
@doc """
Hello world.
## Examples
iex> BunnyMask.hello()
:world
"""
def hello do
:world
end
end